I have an NSManagedObject called WorkOrder with a boolean property isComplete defined in a category for that class.
I use an NSFetchedResultsController to fetch these from the data store and display them in a table view. I'd like to be able to filter the results based on the isComplete property, but of course the predicate in the NSFetchedResultsController can't do that because the property is not a Core Data attribute. I also can't filter the controller's fetchedObjects array because that property is read-only.
Is there any way to do what I'm trying to do without rolling my own data structure that mimics NSFetchedResultsController but allows me to filter the results post-fetch?