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];
|
How can I create a calendar of a specific type? All calendars created with + calendarWithEventStore: are created with type Local:
| |||
|
feedback
|
|
You can enumerate over the available types and pull the one you want.
| |||
|
feedback
|
|
Do not forgot to place save calendar statement for creating your calendar. Happy Coding,Arun | |||
|
feedback
|