Event Kit is a framework in iOS which provides classes for accessing and modifying calendar event information.

learn more… | top users | synonyms

0
votes
1answer
4k views

How to add events in iPhone using Event Kit framework

I am making a Restaurant application in which i need to add events in calendar, events information are coming from server, if client add any event it should show in calendar for that specified date, i ...
0
votes
2answers
981 views

how to launch iPhone Calendar from within an iPhone application?

Is it possible, and how could I, launch the iPhone calendar application from within an iPhone application. For example your application may have a "select date", and then a "launch iPhone calendar" ...
1
vote
1answer
1k views

How to programmatically add calendar subscriptions on iOS?

Via the settings panel of your iPhone, you can add a subscription to a remote .ics calendar format. I have a Dutch iPhone app that does this from within the app (see the screenshot below, "abonneren ...
4
votes
4answers
2k views

EventKit - App freezes when adding an EKEvent with 2 alarms (iOS 5)

I have an app that programmatically adds reminders to your iOS device's calendar. Previous to iOS 5, I could add a calendar item with two alarms thusly: EKEventStore* eventStore = [[EKEventStore ...
4
votes
1answer
2k views

XCode: Why is my event not being added to the calendar?

I have added the following code to my app: NSDate * selected = [DatePicker date]; NSString * date = [selected description]; NSDateComponents *components = [[NSCalendar currentCalendar] ...
3
votes
3answers
2k views

EKAlarm will not set in iOS 5

I wrote the following snippet to create an event. Setting the alarm works fine in iOS 4, but in iOS 5 it doesn't get set. Is this a bug or am I missing something? EKCalendar *cal = [self.eventStore ...
2
votes
3answers
860 views

How to access an EKCalendar's `account` property

Take a look at the documentation for EKCalendar. It's pretty simple, it has five properties, only one of which is a string called title. Now if you have multiple calendars on your iPhone and you open ...
6
votes
3answers
4k views

Fetch all events from EventStore EventKit iOS

i would like to know how to fetch all events from an EventStore using EventKit in iOS. This way i can specify all events for today: - (NSArray *)fetchEventsForToday { NSDate *startDate = ...
9
votes
1answer
6k views

iPhone simulator - how to detect when app is running on simulator (so can setup test data)?

Any sample code that would show me how to, in my iPhone application code: How to detect if the application has just been DEPLOYED to be run to a simulator (and not a device) [if "Deployed" isn't ...
2
votes
1answer
323 views

EKCalendarChooser multiple selection does not work

I'm trying to use EKCalendarChooser to get multiple calendars selected by the user. This is how I present the view: EKCalendarChooser* dvc= [[[EKCalendarChooser alloc] ...
2
votes
4answers
1k views

EventKit in Universal app (OS3.2)

I made iPhone app with eventkit framework. However, i upgrade to universal app, app can't run in ipad. I got error message dyld: Library not loaded: ...
26
votes
1answer
320 views

Google Delegates on Calendar Framework / EventKit

I have always run with the assumption that Google delegates can be viewed by iCal and the calendar.app, but are not visible to us developers through the calendar framework, or EventKit. Has this ...
4
votes
1answer
1k views

How to decide whether the default EKCalendar 'Calendar' can be hidden?

I'm writing an app that deals with calendars. In the app I'm displaying a list of all available calendars for the user to enable or disable. I'm not using the EventKitUI framework for purposes of my ...
3
votes
1answer
218 views

How to customise EKEventEditViewController

I am using default EKEventEditViewController in my App and I want to customize it, currently it shows all fields that came in default EKEventEditViewController, but I don't want to show URL field and ...
2
votes
3answers
370 views

Failing to save EKReminder in iOS 6

I am trying to save/ retrieve reminders from my app, but for some reason the EKReminder seems as though it is not being saved. Here is my code: EKEventStore * _eventStore = [[EKEventStore alloc] ...
1
vote
1answer
133 views

iOS App Error: I screwed up somewhere in date calculation

My app crashing randomly, I can't generate same case that occurs in user's devices, here more details from the crash report: Crash CLASS: NSInternalInconsistencyException FUNCTION: ...
1
vote
0answers
428 views

iOS EventKit: EKCalendar named “Calendar”? What is it?

When I query the EKCalendars on my iPad via -[EKEventStore calendars], an EKCalendar called "Calendar" is always returned. It has a type of "Local" and never has any events. (Note: the same calendar ...
0
votes
2answers
852 views

URL Scheme for opening the iCal app at a date or event?

The Apple URL Scheme Reference gives a nice overview of a number of URL schemes you can use to open certain built-in apps with some parameters. I know that this is not a complete list of all possible ...
0
votes
3answers
3k views

Does the iOS SDK give access to the Calendar picker used by iPhone's built-in Calenar app?

I've dug around a bit in the Eventkit/EventkitUI docs and couldn't find an answer. Does the iOS SDK provide a way to display the Calendar chooser view that the built-in Calendar app uses when you ...