I'm trying to get a list of reminders from a calendar but I'm keep getting an error. I can do a similar thing with calendar events but when i try and amend it for reminders i run into problems.
This code fails on the first line to do with EKEntityMaskReminder
_store = [[EKEventStore alloc] initWithAccessToEntityTypes:EKEntityMaskReminder];
EKCalendar *calendar = [_store calendarWithIdentifier:[self.detailItem valueForKey:@"cal_id"]];
NSArray *calendarArray = [NSArray arrayWithObject:calendar];
NSPredicate *predicate = [_store predicateForRemindersInCalendars:calendarArray];
_eventsList = [_store fetchRemindersMatchingPredicate:predicate completion:nil];
The error message is:
-[EKEventStore initWithAccessToEntityTypes:]: unrecognized selector sent to instance 0x157660
If i change the store thus:
_store = [[EKEventStore alloc] init];
then it fails with:
'-[EKEventStore predicateForRemindersInCalendars:]: unrecognized selector sent to instance 0x165c20'
I am able to create a reminder if i set the store as:
_store = [[EKEventStore alloc] init];
and it shows in the reminders app.
Does anyone know why i can't query these reminders?