This code has been working fine prior to ios 11, but now in ios 11 the ID works fine but the title returns null.
NSArray *availablePersonalCalendars = [eventStore calendarsForEntityType:EKEntityTypeEvent];
for (EKCalendar *cal in availablePersonalCalendars) {
NSLog(@"ID: %@", cal.calendarIdentifier);
NSLog(@"Title: %@", cal.title)
}
Please help me out if you know how to fix this. Thanks,