How can I create a calendar of a specific type? All calendars created with + calendarWithEventStore: are created with type Local:

EKEventStore *store = [[EKEventStore alloc] init];
EKCalendar *cal = [EKCalendar calendarWithEventStore:store];
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can enumerate over the available types and pull the one you want.

EKCalendar* cal = [EKCalendar calendarWithEventStore: self.eventStore];

EKSource* sourceForType = nil;

for (EKSource* src in self.eventStore.sources)
{
    if (src.sourceType == calType)
    {
        sourceForType = src;
    }
}

cal.source = sourceForType;
link|improve this answer
feedback

Do not forgot to place save calendar statement for creating your calendar.
   –saveCalendar:commit:error: .
The EKEventStore property for saving the calendar to the database.

Happy Coding,Arun

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.