Following is the code I'm using to fetch the events from Calendar, but I always get the array nil
.
EKEventStore *eventStore = AppContext.HSCalendar.eventStore;
NSPredicate *predicate = [eventStore predicateForEventsWithStartDate:[NSDate distantPast] endDate:[NSDate distantFuture] calendars:[NSArray arrayWithObject:[eventStore calendarWithIdentifier:AppContext.HSCalendar.selectedCalendarID]]];
NSArray *arrEvent = [eventStore eventsMatchingPredicate:predicate];
How can I get all the events from the custom calendar?