To access the array of EKCalendar
s, we use the calendarsForEntityType
method:
let calendarsArray = eventStore.calendarsForEntityType(EKEntityType.Event) as! [EKCalendar]
Just use a simple for
loop:
for calendar in calendarsArray{
//...
}
let calendarColor = UIColor(CGColor: calendar.CGColor)
let calendarTitle = calendar.title
UIColor *calendarColor = [UIColor initWithCGColor: calendar.CGColor];
NSString *calendarTitle = calendar.title;