Even though SwiftUI offers a lot of features for building a UI, I found my self missing something. I'm trying to display a list with calendar information, one item pr. day. I want to scroll this fluently and by the nature of a calendar, there is not a specific start or end to the list, so a standard ScrollView or List does not suit the task.I've therefore tried to put a custom control together. My approach is to have 2 items more that needed, initially positioned off screen (at the top and bottom). All items have the same height to keep the layout simple. I scroll by offsetting the items. Once the offset is greater than the height of an item, I shift the contents by 1 and reposition the items so I again have the first and last item placed off screen.This method works quite well, as long a the item views are simple. When the individual items get complex, I see a stuttering effect when I drag it up and down. I suspect that the delay causing the stutter comes from the view being regenerated.Is
Search results for
calendar
1,863 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Figured it out. See Apple doesn't want the actual year and month from the Gregorian calendar, but rather the year and month of their own fiscal accounting calendar. So 01 is October, 02 is November, and so on. https://developer.apple.com/forums/thread/114240?login=true https://developer.apple.com/forums/thread/665639
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
we are downloading the Apple financial reports but we just realized we haven't received any data since period covering Oct-Nov 26, 2022 pay period. anyone else seeing this? note, the other reports (daily sales summary, etc) are working fine. https://developer.apple.com/help/app-store-connect/getting-paid/download-financial-reports https://help.apple.com/app-store-connect/?lang=en#/dev63d64d955 https://apphud.com/fiscal-calendar sample call https://api.appstoreconnect.apple.com/v1/financeReports?filter[regionCode]=ZZ&filter[reportType]=FINANCIAL&filter[vendorNumber]=123&filter[reportDate]=2022-12
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Store Connect
App Store Connect API
Has anyone found a fix to this yet? I'm bombarded with my colleagues invites on my apple calendar - a problem that isn't on goggle mail either on the app or on the desktop. Been using google calendar app on my phone as a get around and stopped using apple calendar, but actually much prefer it, and would like to go back to using it. I never had this problem at my old workplace which was also using google workspace.
Topic:
App & System Services
SubTopic:
General
Tags:
The Calendar of Date picker is not show the select month instead shows a pervious month calendar on first time open Below is the code: CGRect frame = CGRectMake(0.0, 0.0, 96.0, self.stdUTCDateField.layer.frame.size.height); self.stdUTCDateField.subviews[0].layer.frame = frame; self.stdUTCDateField.contentHorizontalAlignment = UIControlContentHorizontalAlignmentFill; NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@en_GB]; NSTimeZone *timezone = [[NSTimeZone alloc] initWithName:@UTC]; NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@ddMMMyyy HHmm]; [self.stdUTCDateField setLocale:locale]; [self.stdUTCDateField setTimeZone:timezone]; Date set was in UTC e.g 2023-03-09 23:45:00 UTC
This...is...nuts. Logically, I understand why it doesn't work. If this was ObjC, I'd probably have it worked out by now. But in SwiftUI, I'm stumped. Here's my code: struct CalendarView: View { @StateObject var selectedDate = SelectedDate() @Environment(.managedObjectContext) private var viewContext @FetchRequest( sortDescriptors: [NSSortDescriptor(keyPath: Expense.eName, ascending: true)], animation: .default) private var expenses: FetchedResults var body: some View { VStack { CalendarHelper(interval: DateInterval(start: .distantPast, end: .distantFuture), date: selectedDate) ForEach(expenses, id:.self) { exp in if selectedDate.selectedDate.isInSameDay(as: exp.eDueDate ?? Date()) { List { ExpenseRowItemView(eName: exp.eName ?? , eCategory: exp.eCategoryName ?? , eDueDate: exp.eDueDate ?? Date(), eImageName: exp.eCategoryName ?? , showEdit: false) } } } VStack { GeometryReader { geometry in Image(emptyView) .resizable() .aspectRatio(contentMode: .fit) .frame(width: geometry.size.width, height: geometry.size.h
Description of Problem: I have a flight logging app and log all date and time in UTC timezone. The pseudo code is as follows: datePicker.preferredDatePickerStyle = .compact datePicker.date = Date.now datePicker.timeZone = TimeZone(identifier: UTC) Most of the time, when I click the label, it opens the calendar-style view as the current month. However, if the local date of the device is +1 day of the UTC date. It opens the calendar-style view as the last month. For example, if current time is January 15th, 2023 1:05 (AM) in Japan/Tokyo, the UTC time will be January 14th, 2023 16:05. The bug will appear. How to reproduce: Set the device timezone to Tokyo/Japan (UTC+0900). Set the local time to 1:05AM of January 15th, 2023. Create a UIDatePicker with style .compact, date to now, and its timezone to UTC. Click the datepicker, and a calendar-style view will show. Result expected: The view shows the month of January 2023, with January 15th selected. Result actually shown: The view shows m
To everyone who has trouble finding where they can actually even SEE some history of the charges by Apple for their developer membership, and/or trying to get a receipt to submit an expense report for managing a company's iOS app presence, This is the super-complicated way to do it: First, the main thing to remember is that Apple has the stupidest policy regarding Apple accounts. This means that for everyone that created a corporate Apple ID account, like most of us have, and where we manage our company's app submissions, etc., this is NOT the account in which you will find the payment history with the yearly Apple Developer Program membership renewal! We all probably forgot that when getting approved for that account, at some point you had to provide a real Apple ID that was able to undergo verification of identity, to charge the corporate card to. Since the corporate account can't have an ID associated with it, we probably used one of our personal Apple IDs or created on specifically for just this hurdle. H
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
i update one app but it got 2.0 Binary Rejected and they send me this message in resolutin centeron May 13, 2020Hello,The review of your app is taking longer than expected. Once we have completed our review, we will notify you via Resolution Center.If you would like to inquire about the status of this review, you may file a request via the Apple Developer Contact Us page.Best regards,App Store Reviewafter few days get new replay with under messageon May 20, 2020From AppleOther - OtherHello,Upon further review of the activity associated with your Apple Developer Program membership, we have determined that your membership, or a membership associated with your account, has been used for dishonest or fraudulent activity. Therefore, your Apple Developer Program account has been flagged for removal.If you would like to appeal this termination to the App Review Board, you must do so within 14 calendar days. When submitting your appeal, be sure to select “I would like to appeal an app rejection or app remova
Hi, I don't have too much experience with UIKit I'm trying to reload the decorators for my calendar but I can't find a way to do it. I have a view Model that gets the events by using async example: @Published var events: [EventSession] = [] @MainActor func getEvents() async { self.events = [ EventSession( eventId: 1, sessionId: 1, userId: 1, title: Event 1, startDate: Date(), sessionStatus: ACTIVE, eventStatus: ACTIVE, isPrincipalSession: true, users: [1] ), EventSession( eventId: 2, sessionId: 2, userId: 2, title: Event 2, startDate: Calendar.current.date(byAdding: .day, value: 2, to: Date())!, sessionStatus: ACTIVE, eventStatus: ACTIVE, isPrincipalSession: true, users: [2] ), In my SwifUI View I'm invoking my CalendarViewRepresentable VStack { ScrollView(showsIndicators: false) { CalendarViewRepresentable(events: $vm.events, dateSelected: $dateSelected, displayEvents: $displayEvents, interval: DateInterval(start: .distantPast, end: .distantFuture)) .tint(.accentColor) DayEventsView(dateSelected: $d
I have been working on an app for messaging and storing information. Such as documents, Images, Calendars, etc. I have moved to the Swift Playgrounds because my friend is helping build the app, but he has an iPad, So I moved the app over to playgrounds so we can collaborate. I cannot import Firebase into my project, every time I do, Playgrounds crashes. I have found this thread on GitHub that was having the same issue, it has been over a year since this was open, are we ever going to get the ability to use non pure swift packages? Is there any work around to this? I have been searching for 2 days of other database options, but there are non that work. https://github.com/firebase/firebase-ios-sdk/issues/9107 Dec 16, 2021
Submitted this back in January in Feedback Assistant but no response. After installing Ventura all of my existing Exchange Calendar events that were set to “Show as” Out to Office now show as busy. New events are also missing the option to choose OOO. iOS works fine. I tried removing the account and adding it back but others are experiencing the same per: https://discussions.apple.com/thread/254336452?login=true The option is not available in iCloud calendars in macOS but never was in past releases. If I set it to “Away” in Outlook.com which is the new denomination in Outlook it shows as busy on macOS Calendar. SS attached
Hi All! Hope I can get some help in this forum. My question is very simple - after upgrading to the latest iOS 16.4 beta version my WhatsApp history is gone. It required me to re-login to WhatsApp (as well as gmail, google calendar, FB and others), but the history for WhatsApp is gone. This didn't happen with previous beta updates for the same 16.4 version. I'm wondering if the chats are still stored somewhere on the iPhone drive (obviously not in a location I can simply access from the Files app)? Is there a way to recover them? Perhaps some paths or locations had changed in this upgrade and in the next version they will be fixed? What would be your recommendations? Thanks!
After updating iPadOS14.5, the input type = date tag of the html file is now displayed as Apr 27. 2021 in the iOS app. Until now, it was displayed as 2021/04/27. The date input calendar displayed when tapping the input area is still displayed in Japanese. How can I display in the format of 2021/04/27 on iPadOS 14.5? I also searched for formatting options, but couldn't find them.
I can see that it is fairly simple to implement Sign in with Apple https://developer.apple.com/sign-in-with-apple/get-started/ However, we want the users to also be able to manage calendar from the web app. I found EventKit but that is if I am making an App on iOS, not really on a custom web app. Can you please help me with the link for api for events push and pull on Apple calendar? Thanks