I\'m using NSFetchedResultsController with a predicate to load a list of Documents in my application. I want to load all the Documents
NSFetchedResultsController
Documents
Change your predicate to read
[NSPredicate predicateWithFormat:@"self != %@", [self currentDoc]]
Where currentDoc is a reference to the instance of the NSManagedObject that represents the current document.
currentDoc
NSManagedObject
Core Data will do the equality check internally.