I have an NSArray of CalEvents returned with the [CalCalendarStore eventPredicateWithStartDate] method. From the events returned, I am trying to ke
NSArray
[CalCalendarStore eventPredicateWithStartDate]
Try [NSPredicate predicateWithFormat:@"title ==[c] 'on call'"];
[NSPredicate predicateWithFormat:@"title ==[c] 'on call'"];
(The [c] makes the equality comparison case-insensitive.)
[c]