I am using Event Kit to read and create events. I want to be able to add attendees to such events. But as described in documentation we cannod do that with Event Kit framework:Event Kit provides limited access to a user’s Calendar database; it does not include everything that would be desired for implementing a full-featured calendar or reminder app, such as adding attendees or accounts (https://developer.apple.com/library/ios/documentation/DataManagement/Conceptual/EventKitProgGuide/Introduction/Introduct…)I see that some apps, like Google Calendar, can do that. I think that they are using CalDAV protocol, but I could not find anythink about that (documentation, tutorials, other helpfull resources) and I don't know where to start.Any help would be welcome.Thanks
Search results for
calendar
1,863 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
In Settings > Accounts, you can sync Google Calendars via Gmail or Exchange. The Gmail method is easier and is currently working but the major downside being it doesn't support push so more battery intensive and won't show calendar changes right away which for some may not be an issue for others it can be a major one.For paying gmail customers, you can like always use the Exchange connection to sync your mail, contacts and calendars and have changes pushed instantly.However, in iOS 13 Beta 2 all calendars do not sync.On Google Calendar website, I have my main calendar Work but also two other My Calendars, one is Personal one is Family. Also have a a couple subscribed calendars. In iOS 13 Settings > Account, it shows the main calendar Work, and the subscribed calendars but not Personal and Family. The first thing I checked which for 99% of people with the issue is to go to https://calendar.google.com/calendar
Anyone else having an issue with public beta 1 not syncing with Google Calendar? My calendar shows up correctly online but new events don't propogate to the phone.matt
Hi, in iOS to save an event to Calendars we have the method: [oEKEventStore saveEvent:event span:EKSpanThisEvent commit:YES error:&err]; but i don't know how can I do the same but from watchOS. I have the EKEvent with all attributes setted (title, start date, calendar, etc..) but I don't know how persist it 😞 Thanks!
does anyone know how to configure Swift DatePicker using a set Calendar identifier so that the calendar display on the date picker is in identified months and dates (e.g., Hebrew, Ethiopic, etc.) without setting an environmental locale? Struct DateView: View { @State var selectedDate = Date() let dateFormatter: DateFormatter = { let formatter = DateFormatter() formatter.dateStyle = .medium return formatter }() var body: some View { DatePicker(Please enter a date, selection: $selectedDate, displayedComponents: .date) .datePickerStyle(WheelDatePickerStyle()) Divider() Text (You selected (selectedDate,formatter: dateFormatter)) Spacer() } }
Hello, can I get the gmt time and date without using the iPhone calendar ? as user can change the iPhone calendar manually and so I will get a wrong gmt time.
Does anyone know where Apple is keeping its 2016 Fiscal Calendar that it uses for aggregating IAP payments?
Hi there! I am asking for help with an issue I am experiencing on my Apple calendar. I used to see all the annual Italian holidays but unfortunately from 2022 I don't see any event that I could see in 2021 instead. I attach a screenshot. The calendar is perfectly configured and enabled but I don't understand what the problem is. The problem is also present on other Apple IDs of my family members all with the same problem. Is it possible to solve it in any way?
EKEventStore methods sometimes return fewer calendars or events than expected.I allocate an EKEventStore and query it for calendars and events. I also register for various notifications, including EKEventStoreChangedNotification, and re-query the store when those notifications are observed.I have 10 calendars of which 4 are Google calendars. The following call always returns all 10 when first queried and usually returns all 10 on subsequent queries: NSArray *calendars = [_eventStore calendarsForEntityType:EKEntityTypeEvent];However, sometimes it will return 6 or 7 calendars. The missing 3 or 4 calendars are always my Google calendars.I have the same issue with the following call: NSArray *events = [_eventStore eventsMatchingPredicate:predicate];It always returns all events when first queried and usually returns all events on subsequent queries, but sometimes will return fewer than expected events for my Google calendars.Some users of my app have a
Hello All, It appears I've hit a dead-end in developing a scheduling app in terms of utilizing the Date Picker control as a calendar that actually functions like the apple calendar. It also appears the EventViewController will only display one event versus an array of events??? So in order to list events/reminders in an app, we have to build this out in a table view or stack view??? I'm finding it hard to believe we can't simulate the current calendar display that when you click on a day, it will display that days events/reminders and have the 7 day view on top of it, etc... Also, I did look at the calendar kit in CocoaPods. I was hoping to build my own using EventKit though. Lastly, I was going to post a screenshot of this calendar/schedule image from an iPhone 11 simulator but it looks like we can't post screen shots in here???
In my app I create a local calendar and put some events in it. It works on iOS8 but the same code doesn't on iOS9, even if all the metod called return valid/Ok values.I ask for credential then when granted I create the calendar with:self.eventStore = [[EKEventStore alloc] init] EKCalendar *calendar = [EKCalendar calendarForEntityType:EKEntityTypeEvent eventStore:self.eventStore]; [calendar setTitle:@My app calendar];and add events with:EKEvent *event = [EKEvent eventWithEventStore:self.eventStore]; // fille the event fields with data.. NSError *error = nil; bool ret = [self.eventStore saveEvent:event span:EKSpanThisEvent commit:YES error:&error];(of course the event is filled with proper data)as I wrote it works on iOS8 but not on iOS9. Anybody knows how to fix it?Tnx in advance
Hello, I want to make an app that displays the current event(s) (The ones that are ongoing at any given moment) on my Google calendar and shows how far through the event(s) I am with a progress bar, and updates live. I want it to be as simple as possible and don't want it to take up too much space. I have a little window with some text elements and a progress bar that works if you manually put in values. But I still think the window is too big and clunky and I wonder if it's possible to change it's style? I'm a bit inexperienced with coding and am completely new to xcode and swift. What approach would you recommend I take with this project? Or what resources would you refer me to?
We have about 15,000 people subscribed to different calendars on our server. We’ve been inundated by IOS 14 users complaining their calendars in the Apple calendar app are no longer updating. IOS 13.x users are still getting updates to their calendars but it would appear IOS 14 users aren’t. Some reported a ‘verify account’ option showing in the list of calendars asking them to verify that an SSL connection wasn’t available to the calendar (even though it is). Clicking this does a one off update but no further automatic updates are done. Deleting the calendar and adding it in again works as a ‘one off’ but no further updates are done. Has anyone else come across this issue with IOS 14? (Still an issue on IOS 14.2 beta)
I'm having issues with EventKit. Before requesting any data from EventKit, I request auth access to reminders and calendar. In the App Sandbox configuration, I've checked off Reminders. After requesting access, I call reset() on the EKEventStore I created. The first time after access is approved, a call to store.calendars(for: .event) returns zero results (calls to store.predicateForEvents WILL return results). If I force quit the app and launch it again, I get results for store.calendars(for: .event) What am I missing here? What's weird is, before all this started happening, everything was working correctly without the store.reset() call - even the calendars were getting returned. However, I accidentally deleted my App's Target and had to recreate it. Since recreating the build target, I was NOT getting results for store.predicateForEvents until I called store.reset() after authorization was granted. But I still can't get the calendar list after first launch.
Hello, In the calendar app people can subscribe to calendars from the web and have the events in the calendar, but can my Xcode app generate a local url with an ical file that can be subscribed to? Just for the user on the device with the app, not on the internet? For example my app when run creates an ical file of events that repeat each year, like international days of the year and puts it somewhere like in the group folder or somewhere behind the scenes and then the user can click that link from within the app or copy and past it into the calendar app by adding a new calendar and putting in the url? I don't want to put the url online because the information is private and just for the user of the device.