vote up 0 vote down star
2

I'm finishing up the Core Data tutorial, and it suggests trying to convert to using a NSFetchedResultsController. So I've got it so that I can query the existing data, but when I add a row at the beginning, tableView:cellForRowAtIndexPath calls NSFetchedResultsController.objectAtIndexPath, but that still returns the old zeroth object instead of the new one. Is there something I need to do to flush that data?

flag

3 Answers

vote up 1 vote down check

Have you set your view controller as the fetched results controller's delegate and implemented the NSFetchedResultsControllerDelegate protocol? If so, you should not have to perform the fetch again, the fetched results controller will invoke the delegate methods in response to changes.

(Note, though, the caution in NSFetchedResultsController documentation regarding the implementation of the table view data source methods.)

link|flag
This has got to be the right answer, at least better than redoing the fetch every time, but I'm getting an uncaught exception in [managedObjectContext save:&error] right after the didChangeObject:atIndexPath:forChangeType:newIndexPath finishes. – Paul Tomblin Jul 3 at 12:16
What is the exception, and in what method? – mmalc Jul 7 at 15:52
vote up 2 vote down

There was a clue in the link that Naaf provided. Turns out that after doing the save, I needed to call -[NSFetchedResultsController performFetch] again.

link|flag
vote up 2 vote down

Nobody has answered yet, so I'll add my guess. It looks like this link might be relevant. The suggestion there is that calling either of these two methods should get an update for you:

-[NSManagedObjectContext processPendingChanges]
-[NSManagedObjectContext save]

Perhaps the documentation for NSManagedObjectContext will be useful.

link|flag
Actually, I was already doing the [managedContext save]; but there was a clue in there. – Paul Tomblin May 21 at 11:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.