私はカレンダーのイベントを検索するには、次の述語を使用しようとしましたが、私はその理由は、以下の 例外「NSInvalidArgumentException」を取得しています:私はEventKitに続いNSPredicateを作成してカレンダーのイベントを検索するにはどうすればよいですか?
//[_sender objectAtIndex:0] is Name of the event and [_sender objectAtIndex:1] is location of the event NSPredicate *prediction=[NSPredicate predicateWithFormat:@"(SELF contains[cd] %@)", [NSString stringWithFormat: @"%@%@",[_sender objectAtIndex:0],[_sender objectAtIndex:1]]]; NSArray*events=[eventStore eventsMatchingPredicate:prediction];