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

learn more… | top users | synonyms

26
votes
1answer
319 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 ...
15
votes
5answers
7k views

App Calendar Functionality No Longer working in ios 6

In the app I am currently developing there is interaction between the user and the users calendar, like what happens in many apps, very standard stuff. It was working fine until I upgrade to ios 6. ...
11
votes
1answer
1k views

Adding EKParticipants to an EKEvent in EventKit

I'd like to programatically add a participant to an EKEvent on the iPhone. EKParticipant's class reference states "You do not create EKParticipant objects directly. Send attendees to an EKEvent ...
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 ...
7
votes
2answers
151 views

Does Apple provide a UI for editing/adding Reminders?

I know there is an API for adding a reminder programatically. But is there a view controller for reminders? I've looked in EventKitUI framework, but I'm not sure if EKEventEditViewController works for ...
6
votes
3answers
2k views

How can my app get a list of calendars on user's iPhone

I'm writing an iPhone app that will use the EventKit framework to create new events in the user's Calendar. That part works pretty well (except for the wonky way it handles the timezone -- but that's ...
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 = ...
5
votes
1answer
164 views

Bullied by the EventKit framework on iOS 6

At first I though I had left my self this message, but then I started seeing more comments like this one. I just want to ask if Im the only one seeing messages like this ? I think its funny in some ...
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] ...
4
votes
3answers
2k views

How to customize UITableView of EKEventViewController?

Is there any way to change the background color/image of the details UITableView in the EKEventViewController? I'm able to change the main UITableView but not the detail UITableView due to have no ...
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 ...
4
votes
1answer
847 views

Retrieving account information for an EKCalendar

I am using EventKit in my app and would like to find out what account a calendar belongs to. The iPhone Calendar app shows all calendars grouped by account, with the account name for instance ...
4
votes
1answer
2k views

Store a custom value in a EKEvent (iPhone Calendar)

My app integrates with the device calendar. When a new item is added to my app we create a calendar entry for this item. If the item is edited we need to update the calendar item. What I do now is ...
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 ...
3
votes
3answers
2k views

EKEvent eventIdentifier returns null

When I try to get the identifier of an EKEvent, all I get is a nil value. Since in iOS5 EKEvent is a subclass of EKCalendarItem, I figured I might be able to get the EKCalendarItem's UUID, but that ...
3
votes
1answer
1k views

Getting “Undefined symbols” when trying to use EventKit?

I am trying to use EventKit based around the doco & SimpleEKDemo application, however I am getting the following single error. What does this error mean and what steps would be recommended for ...
3
votes
2answers
764 views

Add participant to an event in iOS

In the EKParticipant Class reference, " Send attendees to an EKEvent object to get an array of EKParticipant objects. " OK, buy how can I send attendees to an EKEvent object? Someone give example ...
3
votes
1answer
4k views

Manage iPhone Calendar event from our application

The following is my code NSLog(@"%@", thisEvent1.title); EKEvent *thisEvent = [EKEvent eventWithEventStore:eventStore]; eventStore = [[EKEventStore alloc] init]; thisEvent = [EKEvent ...
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 ...
3
votes
1answer
380 views

eventsMatchingPredicate not finding last date in event spanning multiple days

I have an event (called "Test Event") which starts at 2 a.m. on November 6 and ends on 10 a.m. on November 24. When I try to find the event by specifying a range of one day, I can find it for all ...
3
votes
1answer
712 views

iPhone 'Event Kit' - how can I specify additional search filters for a fetch (beyond start/end date)?

re iPhone 'Event Kit': How can I specify additional search filters (per doco here) for a fetching calendar items, beyond the limited options of just start & end date mentioned in the doco? (e.g. ...
3
votes
3answers
240 views

How to set an event in NSCalender?

I'm trying to add event with my calendar date like following: - (void)viewDidLoad { [super viewDidLoad]; self.navigationItem.title = @"Calendar"; EKEventStore *eventStore = [[EKEventStore ...
3
votes
1answer
567 views

Retaining Events from the user's calendar

I'm working on an App that needs to remember events selected by the user from their calendar and I've run into a problem with recurring events. For non-recurring events I can just store the ...
3
votes
1answer
67 views

Add id to events in reminder Objective-C

I add reminder events using Eventkit.framework in my app but when i show the reminder events in my app it shows all the reminder events in iPhone but I only want to show the reminder events that I ...
3
votes
2answers
109 views

Reminders.app two-way synchronisation logic

I want my app to synchronise with the Reminders.app. (my app utilizes Core Data) I've already done a prototype and it works, but there are some bugs I can't think through. Right now my sync ...
3
votes
0answers
92 views

EKParticipant in EventKit erroneously returns NO for isCurrentUser property

I'm attempting to determine which of an EKEvent's attendees (EKPartipants) is the current user. In iOS6, EKParticipant exposes a property called isCurrentUser ...
3
votes
1answer
81 views

Search ios reminders without date

I'm familiar with using the eventstore search predicates like predicateForIncompleteRemindersWithDueDateStarting:Ending:Calendars: but I'm trying to figure out how I can search for any incomplete ...
3
votes
1answer
213 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 ...
3
votes
0answers
261 views

Descriptive name for EKSource in iOS5

I've been trying to get a descriptive title for an EKSource on iOS5 for a while now, but the problem I keep running into is that the title of an external exchange source is always "Exchange", even ...
3
votes
1answer
423 views

How to open a custom app from clicking 'view event' of calender reminder

I have set reminder event in a app using Eventkit framework. I used following link for creating reminder in iCal. And also set alarm for the event. Now when alarm is displayed in alert view, while ...
3
votes
2answers
514 views

Snooze method in EventKit Framework?

I am able to access all functionality of EKEventStore like save any event or remove any event from Calendar. But how can create snooze for that event lets say 15 min snooze i needed for all saveEvent ...
2
votes
4answers
1k views

iPhone: How to detect if an EKEvent instance can be modified?

While working with the EventKit on iPhone I noticed that some events can exist which cannot be modified. Examples I encountered so far are birthdays and events synced with CalDAV. When you view the ...
2
votes
1answer
4k views

Add Event to calendar in xcode iOS

Hy I have this code for adding Events to calendar but it does not add. -(void)event { EKEventStore *eventStore = [[EKEventStore alloc] init]; EKEvent *event = [EKEvent ...
2
votes
3answers
855 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 ...
2
votes
1answer
666 views

Is the starting day of the week stored in NSLocale somewhere?

I live in the Netherlands. We Dutch people like to see Monday as the start of the week. I know that people in the US like to consider Sunday as the start of the week. Silly Americans ;) If I want to ...
2
votes
2answers
971 views

PhoneGap + Event Kit Framework?

I've looked through PhoneGap forums and documentation, and I'm not seeing any information on this. I'm just getting started with mobile development using Sencha Touch and PhoneGap, and wondering how ...
2
votes
3answers
1k views

EKEventViewDelegate didCompleteWithAction not getting called

I don't get a call to my eventViewController:didCompleteWithAction: when the EKEventViewController finishes edting an event. Here's how I set it up: - (void)showCalendar:(id)sender { ...
2
votes
1answer
291 views

EventKit: reminders dueDateComponents vs Alarm

I want to create a reminder from my app, so I've created a reminder (EKReminder) and set up an alarm: NSTimeInterval timeInterval = 100000; NSDate *alarmDate = [NSDate ...
2
votes
1answer
322 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: ...
2
votes
1answer
193 views

OS 4.0 features in backwards compatible app

I have an OS 4 app that was completely compatible with 3.x up until I added eventkit. Is there a way I can omit this feature if they are on a 3.x device? I have #if __IPHONE_OS_VERSION_MAX_ALLOWED ...
2
votes
1answer
76 views

How do you create a local calendar?

I'm trying to create a new iOS local calendar to store events related to my application. The reason for this instead of just storing the EventIdentifiers is because this application can sync between ...
2
votes
1answer
161 views

EventKit without using Calendar or Reminders App

I am curious if there is a way to use the capabilities of EventKit - creating events, recurrence rules, etc. - without actually having to interface with the Calendar and Reminders apps? A little more ...
2
votes
1answer
508 views

Can I add/subscribe to a calendar in EventKit?

Is it possible to add or subscribe to a whole new calendar with iPhone's EventKit?
2
votes
1answer
1k views

iPhone: how to interact programmatically with the native Calendar application

Is there any way to interact with the native Calendar application without using EventKit or EventKitUI? EventKit/EventKitUI lets you add/edit/delete etc. events in your native calendar, but I'm ...
2
votes
1answer
175 views

iOS How to add many events to calendar by one loop

I know that code below is very useful for create and add an event to iOS calendar. It work great and i can add many events, but with one event i have to make one touch on the button. - ...
2
votes
2answers
3k views

EKEventStore , do I need EventKit.Framework for iOS 6 saperately?

I have an universal iOS app, giving efforts to make it compatible with iOS 6. I am using Cordova / Phonegap framework so my app is HTML,CSS and JS. I am using calenderPlugin for Cordova which is ...
2
votes
1answer
322 views

Check if NSDate is within an EKEventStore

I'm trying to check whether a certain nsdate is within my Event Store. The current month events are stored in a NSMutableArray. I'm using the these functions to create the events store and to fetch ...
2
votes
2answers
3k views

Add a new calendar to an EKEventStore with EventKit

How can I add a Calendar (not an event) to a EKEventStore in iOS 5?
2
votes
1answer
1k views

NSTimezone problem using EventKit

I need to make entries in the iPhone calendar, using EventKit framework. Since my app should be international, I need to take care of differnt timezones. What I am doing right now: An event should ...

1 2 3 4 5