Reputation: 4122
Is it possible to add or subscribe to a whole new calendar with iPhone's EventKit?
Upvotes: 2
Views: 1032
Reputation: 2337
yes, though only for iOS5 onwards
- (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?
Upvotes: 3