Search results for

calendar

1,863 results found

Post

Replies

Boosts

Views

Activity

Reply to WatchOS 2 - Calendar data not Syncing
Thanks Max, I had tried exactly this. I have three calendars: 2 in iCloud - a personal one and a 'shared' one with Family accounts; and 1 Exchange calendar. Removing *all* calendars from my phone and re-adding only the 'iCloud' calendar had no change on the sync to Apple Watch.One interesting item is when I used Siri to add an appointment via the Apple Watch - it worked and created the appointment, but not on any calendar linked to the iPhone. It's almost as if the watch has it's own calendar that isn't syncing anywhere.-O
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’15
Background Task scheduling and Date. Should we use absolute or calendar date?
Should we use absolute or calendar Date when scheduling background tasks? I would guess it doesn't matter how we construct Date but I wanted to double check since WWDC videos show both ways. I've experienced some instances where background tasks ran much later than expected, and while this is not surprising since iOS has many factors to consider when they allot background execution time, the times of execution seemed to line up with the hours change between Absolute and Calendar time. Or And I understand there is no guarantee that the system will run the background task exactly or even near the date requested. Thanks!
2
0
976
Nov ’23
Reply to ios14 calendar widget does not show events from Exchange Online calendar
Still a problem in iOS 14.6. A big feature introduced in iOS 14 was these widgets and now the one I actually would use doesn't work well. SMH The calendar ON the phone is updated with a change to todays schedule. I know that was the case after a sync, because the calendar display on my Watch face shows the actual updated calendar (which it gets from the phone). Just the phone's widget doesn't update with the new information and still displays stale meeting information. If I open the calendar app (directly or tapping on the widget), it shows the current correct daily meeting state, and then leaving the calendar app causes the home screen widget to redraw and then reflect the current correct calendar state of upcoming events. That widget needs to redraw its desktop render whenever a calendar data change on the phone happens.. even without the calendar app itself being running in the foreground. That activity seems to be missing/broken.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’21
Reply to Subscribed calendar not updating for IOS 14 users
When I tried to write a PHP service that makes calendar files, I've met such a problem. I think it's Apple Calendar bug that we cannot fix, because the PHP-generated calendar shows up properly when I use http:// to get it. But when I use webcal://, it shows in Calendar list, even can be refreshed (and server detects the refresh), but no events shown up. For more details, search Subscribed calendars not shown on my device, but they can be opened manually on Ask Different.
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’21
Reply to Since ios 16 Calendar App is getting google shared calendar notifications non stop
Found a work around explained in step 2 here: https://www.tenorshare.com/ios-file-transfer/how-to-sync-google-calendar-to-iphone-and-ipad.html Basically uncheck the shared calendars from this location. http://www.google.com/calendar/iphoneselect This is different from unchecking via the native iOS Calendar App. It’s certainly an iOS 16 issue.
Topic: App & System Services SubTopic: General Tags:
Nov ’22
Event with predefined UID get two UID's when added to Apple Calendar and event doesn't update
OS: macOS Ventura App: Apple Calendar With the most recent Ventura version (and Apple Calendar) we are experiencing an issue with events that are initially added to the user's calendar (containing a predefined UID) and since then updated with the same UID. On the second event add/update, the event is not updated. Once the initial event has been added to Apple Calendar, we exported the calendar feed and noticed that the specific event had gotten an additional UID applied to the .ics file which we suspect is the cause of the issue. Steps: Download this .ics file and add it to Apple Calendar https://phpphp.dk/apple1.ics This .ics file contains an initial headline. The SEQUENCE field is set to 0 and the UID is predefined to hellouid. Download this .ics file and add it to Apple Calendar: https://phpphp.dk/apple2.ics This .ics file contains a different headline. The SEQUENCE field is set to 1 and the UID is set to hellouid. Expected behavior: The event
0
0
403
Jul ’23
Reply to WatchOS 2 - Calendar data not Syncing
I found that deleting and reinstalling my company's MDM profile worked! Within a few minutes my calendars on my iPhone and watch were both synced! I was also instructed to the steps below, but I didn't need to after the new profile was installed. 1. Open Settings -> Mail, Contacts, Calendar -> PwC Cloud.2. Toggle Calendar Off (when prompted, select “Delete from My iPhone”).3. Toggle Calendar On
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’15
Is calendar invitation status tracking via public icloud endpoint allowed?
Hi All, I want to build a web application to automatically track calendar invitation status. After searching the forum I already figured out that there is no official apple api to access the calendar data of the user (without asking the user to enter his apple credentials). Luckily there is even a public accessible http endpoint to get the needed information: https://www.icloud.com/calendar/eventreply/?t=&p=p31&cc=DE This link is included in the email being sent out to the invited people. Navigating to the link shows the invitation status of all people invited to this event. Exactly what I need. Is it okay to use this endpoint for my purpose? Thanks in advance. Best, Jan
0
0
478
Sep ’21
Add multiple events to the Calendar with Concurrency
I created a function to add my course events to the calendar app using EventKit. After learning the swift concurrency, I want to update my code to make the progress much faster, namely using the detached task or TaskGroup to add these events. Synchronize code without detached task or task group: func export_test() { Task.detached { for i in 0...15 { print(Task (i): Start) let courseEvent = EKEvent(eventStore: eventStore) courseEvent.title = TEST courseEvent.location = TEST LOC courseEvent.startDate = .now courseEvent.endDate = .now.addingTimeInterval(3600) courseEvent.calendar = eventStore.defaultCalendarForNewEvents courseEvent.addRecurrenceRule(EKRecurrenceRule(recurrenceWith: .daily, interval: 1, end: nil)) do { try eventStore.save(courseEvent, span: .futureEvents) } catch { print(error.localizedDescription) } print(Task (i): Finished) } } } Doing the same thing using the TaskGroup : func export_test() { Task.detached { await withTaskGroup(of: Void.self) { group in for i in 0...15 { group.addTask
1
0
1.6k
Dec ’22
Calendar with Correlating Data. Please Help!!!
Basically I need a view with a calendar that will show data attributes from the item. I've tried two different approaches both have their listed problems. There must be a better way to do something like this. Surely it's not ideal to create a new item every time a date is opened or constantly check if something is there, but I don't know any other way. Actual View: import SwiftUI import CoreData struct ContentView: View { @Environment(.managedObjectContext) var managedObjContext @Environment(.calendar) var calenda @Environment(.dismiss) var dismiss @FetchRequest(sortDescriptors: [], predicate: NSPredicate(format: timestamp == %@, Date.now as CVarArg)) var items: FetchedResults @State private var date = Date.now var body: some View { NavigationView{ VStack{ DatePicker(Calendar, selection: $date, in: Date.now...,displayedComponents: [.date]) .datePickerStyle(.graphical) .onAppear(perform: { if (items.isEmpty){ PersistenceController().addItem(date: date, context: managedObjContext) } }
2
0
1.6k
Jun ’22