Is it possible to add or subscribe to a whole new calendar with iPhone's EventKit?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

yes, though only for iOS5 onwards

http://developer.apple.com/library/ios/#documentation/EventKit/Reference/EKEventStoreClassRef/Reference/Reference.html

- (BOOL)saveCalendar:(EKCalendar *)calendar commit:(BOOL)commit error:(NSError **)error

this will save the changes you made to a calendar or will add a new calendar to the database.

detailed step by step instructions for adding a new calendar can be found here how do I create a new EKCalendar on iOS device?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.