Filter Core Data results by property IN array
I currently have Core Data successfully returning all of the results for a specific entity titled Event : NSManagedObjectContext *context = [delegate managedObjectContext]; NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"Event" inManagedObjectContext:context]; NSFetchRequest *request = [[NSFetchRequest alloc] init]; [request setEntity:entityDescription]; NSError *error; NSArray *fetchResults = [context executeFetchRequest:request error:&error]; One property of the Event entity is a string titled tid . I also have an array filterArray that contains all allowed tid