Core Data: Query objectIDs in a predicate?
A predicate like NSPredicate *predicate = [NSPredicate predicateWithFormat:@”NOT (self IN %@)”, arrayOfExcludedObjects]; where the entity of the fetch request is the entity of objects in the array, should do what you want. This can, of course be combined with other clauses in a single predicate for a fetch request. In general, object comparisons (e.g self … Read more