Questions tagged [ekeventkit]
166 questions
2
votes
3 answers
Deleting an event using Event Kit in iPhone
I am using Event Kit in my iOS application and creating a event using Event Kit. I am able to create it but I want to give the ability to delete also. But I am not able to do that. I know there is a method for EKEventStore to delete event but I am…

pankaj
- 7,878
- 16
- 69
- 115
2
votes
1 answer
iPhone Event Kit : programmatically SUBSCRIBE to a new calendar
I was lead to this answer and that tells us how to create an offline calendar (I think) but how do I subscribe to a URL on a server that is spitting out a calendar in ics format? Is this possible?

Mike S
- 4,092
- 5
- 35
- 68
1
vote
2 answers
Issue with Apple's EKEvent Sample
I'm trying to fetch events from the user's Calendar app. That itself works fine, but one thing isn't quite right. I'm displaying the title, location, startDateand endDate in different labels. Now, my problem is that both endDate and startDate are…

kopproduction
- 465
- 5
- 19
1
vote
1 answer
EKEventStore can't save an event after it errors once
I just came across a bug in my program, that has me confused. I add several events to the iPhone calendar in my app. I found that when I receive a "No end date has been set." error when calling saveEvent:span:error:, all subsequent calls to…

Ryan
- 518
- 3
- 12
1
vote
0 answers
How to assign different color to different event in Calendar Kit in iOS Swift
I want to achieve a task in which i want to add different colors for different events using Calendar Kit pod.

Abdul Samad Butt
- 31
- 3
1
vote
0 answers
allocating EKEventStore throws warnings
When creating EKEventStore object, I do get the following lines in the console:
XXX: countOfStores: 0, countOfAccounts: 0
[change-history] Change history operation performed with no stores
[core] "Exceeded the maximum number of connections (2) to…

Gintaras
- 214
- 2
- 8
1
vote
1 answer
EKEventStore Requests Contacts Access on macOS
On MacOS 10.15.4, Xcode 11.4, macOS app:
Initializing an EKEventStore generates a system Contacts Access Request dialog: "“App” would like to access your contacts." I wouldn't expect this to happen as EKEventStore should only be concerned with…

Brandon Horst
- 1,921
- 16
- 26
1
vote
0 answers
creating an event in ios calendar using ekeventeditcontroller does not send mail to some invitees
when inviting invitees over email for an event created with ekediteventcontroller some invitees are not getting invite emails.also when inviting people for some emails a question mark is shown. For these people the mails are not going. Can someone…

sujith1406
- 2,822
- 6
- 40
- 60
1
vote
0 answers
How to change the title color of EKEventViewController in iOS 13?
It is private class called EKCustomTitleView. And you cannot imagine the "Event Details" is UIImageView instead of UILabel.
appearance.titleTextAttributes = [.foregroundColor: myAppLabelColor]
appearance.largeTitleTextAttributes =…

nathanwhy
- 5,884
- 1
- 12
- 13
1
vote
1 answer
Can I open the the add event to calendar screen of the IOS calendar app with pre-filled data from my app?
I want to add a new event to the IOS calendar, I know this can be done easily using the EventKit. However I do not want to add the event directly, I want the calendar app to be launched with the "add event" screen pre-filled with data passed from my…

HannahSaud
- 33
- 5
1
vote
0 answers
on iOS 11 facing error net.fortunal.ical4j.invalid:
On iOS 11, i am using EventKit.
So after adding event and saving it. It works perfectly.
I have added event url in event.
After editing it shows event url has pre adding "net.fortunal.ical4j.invalid:".
So how to resolve this?

Vishal
- 139
- 4
1
vote
0 answers
Daylight Saving Time Bug in EventKit
I discovered a bug in eventKit where dates are altered when saving. In this sample, I use an event with title Midnight that is a 1 second long event calculated to be local astronomical midnight. In the local timeZone, there are two occurrences of…

Victor Engel
- 2,037
- 2
- 25
- 46
1
vote
2 answers
Programmatically show EKEventEditViewController in EKEventViewController
I am creating a new EKEventViewController with a event and display it afterwards
let ekEventViewController = EKEventViewController(nibName: nil, bundle: nil)
ekEventViewController.delegate = self
ekEventViewController.allowsEditing = true
…

emmics
- 994
- 1
- 11
- 29
1
vote
1 answer
How to retrieve events that has been changed in EKEventStoreChanged notification
I have listened for the notification and whenever there is a modification or change, I am synchronising all the events to the local db. But the problem I have is to know whether I can retrieve only the modified events. This is the EKStoreChanged…

sajang
- 63
- 7
1
vote
1 answer
How to detect event store changes and what is change? From EKEventStoreChangedNotification
how to know whether EKEvent is added or deleted? so that i can schedule notification for event. otherwise for deleted event also it will schedule a notification. any help?
-(void)storeChanged:(NSNotification*)notification{
EKEventStore…

Jyoti S.
- 61
- 1
- 7