Search results for

calendar

1,863 results found

Post

Replies

Boosts

Views

Activity

Why does Appstore not show 3 screenshots for my app?
I just deployed an app in the Appstore. When my app is in the list with other apps, they all show 3 screenshots but mine doesn't. Only when I click on my app it shows the 4 screenshots I uploaded in app store connect. I have a presumption that it is because I entered 6.7 and 5.5 screenshots in app store connect instead of 6.5 and 5.5. The problem is testing it: I have to deploy another version to try it out which is cumbersome. It would be nice to know beforehand whether such an amendment has a chance on success. The app is called Your New Calendar and you find it when you search under arjen and scroll down some apps.
2
0
1.6k
Jan ’24
Reply to How to give an iOS App running in Mac(designed for iPad) mode access to the Mac Calendars ?
the app gets the .notDetermined authorizationStatus after a call to EKEventStore.authorizationStatus(for: .event). The .notDetermined status indicates that the app hasn't requested calendar access to the user on that platform or if the app did, the user hasn't made a decision yet. Your app should prompt the user for authorization as mentioned when the authorization status is notdetermined. No, it does not and I do not understand why because it does on both iPhone and iPad. What version of Xcode did you use to build and run your app? What version of macOS are you running your app on? From TN3152: Migrating to the latest Calendar access levels The iOS, macOS, and watchOS SDKs bundled in Xcode 15 deprecate the requestAccess(to:completion:) and requestAccess(to:) methods. If your app links against the iOS 17 SDK, macOS 14 SDK, or watchOS 10 SDK, calling these deprecated request methods doesn’t prompt the user for access and throws an error message. See TN3153: Adopting API changes for EventKit i
Topic: App & System Services SubTopic: General Tags:
Jan ’24
Reply to Getting 24 hour time from Date
OK, the date formatting APIs are not the right path forward for you because they are primarily focused on the presenting dates to the user. To work with dates and times, use the calendar and date component APIs. For example: import Foundation func main() { let c = Calendar(identifier: .gregorian) let d1 = Date(timeIntervalSinceReferenceDate: 3.0 * 60.0 * 60.0) print(c.component(.hour, from: d1)) // 3 let d2 = Date(timeIntervalSinceReferenceDate: 15.0 * 60.0 * 60.0) print(c.component(.hour, from: d2)) // 15 } main() Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
Jan ’24
Can I Use Code From Stack Overflow?
Hello, I have been working on my submission for the Swift Student Challenge and have been searching for a solution for how to complete a trivial task related to dates and calendars in Swift. After searching, I found an answer on Stack Overflow that works perfectly for my project. Am I allowed to submit a playground that includes this code or do I need to rewrite or reinvent the code somehow? Thanks
1
0
513
Jan ’24
Add to apple calendar is not working react PWA app on iPhone
Add to apple calendar is not working react PWA app on iPhone I have developed react PWA app reactjs - v16.14.0 and testing in my iphone13. I have used **npm library ** which opens google,outlook, apple calender event properly on android device, on IOS google and outlook works fine but add to apple calendar event doesnt not show any popup or not showing any error. I have reported one issue on this library forum but they have mentioned that Apple blocks the dynamic generation of ics files I am looking for resolution for this. Let me know proper way to add event in apple calender considering javascript library. [Edited by Moderator]
0
0
1.2k
Jan ’24
icalendar on a web browser has issues with all-day long events
When creating an all-day event in the iCloud Calendar web interface, the displayed end date appears as the next day. This is confusing and misleading for users as it does not accurately represent the event's 24-hour duration. Impact: Users are unsure of the actual end time of the event, potentially causing schedule conflicts or missed reminders. The visual representation of the event is inaccurate and can be frustrating for users accustomed to standard time-based formats. Suggestion: Display the full duration of the all-day event explicitly (e.g., All-day, 24 hours) or adjust the end date representation to avoid confusion (e.g., Ends on the same day).
1
0
699
Jan ’24
Xcode crashes the system when building iOS project
Greetings, Xcode crashes the system and forces macbook to reboot. Firstly, it shows pink rectangles in random places for 5 seconds and then reboots the computer. All I'm trying to do is to just build a simple iOS project in Xcode. This problem started out of nowhere. I tried updating the macbook's OS and Xcode to 15.1, but without luck. Could you please help? Here's the error after the reboot: Debugger message: panic Memory ID: 0x1 OS release type: User OS version: 23C71 Kernel version: Darwin Kernel Version 23.2.0: Wed Nov 15 21:53:18 PST 2023; root:xnu-10002.61.3~2/RELEASE_ARM64_T6000 Fileset Kernelcache UUID: 89516519121B13EC9D63007F55C1F1FD Kernel UUID: 3DE22D7D-A5F5-3B17-84BD-A58164C8B09B Boot session UUID: 70C4D273-3858-48D5-8585-A96A76406DD5 iBoot version: iBoot-10151.61.4 secure boot?: YES roots installed: 0 Paniclog version: 14 KernelCache slide: 0x000000000e964000 KernelCache base: 0xfffffe0015968000 Kernel slide: 0x000000000e96c000 Kernel text base: 0xfffffe0015970000 Kernel text exec slide: 0x0000
2
0
641
Dec ’23
Scrollview not scrolling...
I embedded a vertical scrollview to a calendar that was originally horizontally navigation with buttons. But its isn't scrolling changing months. What am I missing? let days = [SUN, MON, TUE, WED, THU, FRI, SAT] @State private var selectedMonth = 0 @State private var selectedDate = Date() @State private var path = NavigationPath() var body: some View { NavigationStack(path: $path) { ScrollView { VStack { Rectangle() .frame(height: 1) .foregroundColor(.gray) VStack(spacing: 20) { // Month Selection HStack { Spacer() Button { withAnimation { selectedMonth -= 1 } } label: { Image(systemName: lessthan.circle.fill) .resizable() .scaledToFit() .frame(width: 32, height: 32) .foregroundColor(.gray) } Spacer() Text(selectedDate.monthYearFormat()) .font(.title2) Spacer() Button { withAnimation { selectedMonth += 1 } } label: { Image(systemName: greaterthan.circle.fill) .resizable() .scaledToFit() .frame(width: 32, height: 32) .foregroundColor(.gray) } Spacer() } HStack { ForEach(days, id:.self) { day in Text(d
0
0
324
Dec ’23
Is there a known issue with macOS Finder's local USB file sync?
Others and I are having problems with our local offline USB synchronizing our calendars in the recent macOS versions (started in Ventura) and iP* devices as shown in these links: https://talk.tidbits.com/t/my-mac-apple-calendar-went-berserk-i-need-help/23878/39 https://discussions.apple.com/thread/254982807 https://discussions.apple.com/thread/254549186 https://discussions.apple.com/thread/254463571 https://discussions.apple.com/thread/254650642 https://discussions.apple.com/thread/254890299 https://discussions.apple.com/thread/254876661 etc. We reported this to Apple too with our bug reports, but nothing. We don't want to use clouds too. Thank you for reading and hopefully answering.
0
0
663
Dec ’23
iOS and iPadOS date pickers ignores min/max date range when opening
In web-based apps we want date pickers to open to a previous month based on the min-max date range specified on the input. We do not want to set a specific day but want the user to select a date. Android devices and Windows OS (Chrome and Edge) all behave as expected, namely, when the calendar loads the first month specified as the min value displays. iOS devices always open the calendar showing the current month and ignore the min/max attributes on the input. Additionally, the current date is selected making it very easy for the use to accidentally choose the wrong date by accidentally closing the date picker. It appears that iOS is the only platform not supporting min/max on date inputs. Will this be fixed? Or is it this by design? For example, today is December 13, 2023, we expect that selecting the following input to open the native calendar displaying November 2023 and to not select a date.
0
0
1.4k
Dec ’23
Reply to Calendar nextDate/enumerateDates methods with backward direction does not work for September
I just tested with other time zones and the results are different... For some time zones, the result is correct, for others, not. I used the following code to print the result for all time zones. Optional(1970-08-31 23:00:00 +0000) for Europe/London Optional(1995-08-31 23:00:00 +0000) for Europe/Paris Optional(2002-08-31 22:00:00 +0000) for Europe/Vilnius Optional(2023-09-01 07:00:00 +0000) for America/Los_Angeles for zone in TimeZone.knownTimeZoneIdentifiers { var calendar: Calendar = Calendar(identifier: .gregorian) calendar.timeZone = TimeZone(identifier: zone) ?? .autoupdatingCurrent let matchingDateComponents: DateComponents = DateComponents(month: 9) let date: Date? = calendar.nextDate( after: Date.now, matching: matchingDateComponents, matchingPolicy: .nextTime, direction: .backward ) print(zone, date) }
Topic: App & System Services SubTopic: General Tags:
Dec ’23