I've recently come to learn that NSFetchedResultsController
is an extremely buggy class and its been causing me headaches for a while now with my rather large Core Data app.
Would it be appropriate to use an NSMutableArray
to feed the table view instead of an NSFetchedResultsController
? What I'm talking about is, temporarily creating a fetched results controller to grab the objects from my managed object context, creating a new NSMutableArray
with the fetchedObjects
from the fetched results controller, then using that to feed my table view.
Are there any benefits to using NSFetchedResultsController
directly over an NSMutableArray
to supply data to my table view?