views:

439

answers:

0

Good Morning,

Im hoping someone can help me with an issue im having with updating a tableview via the insertRowsAtIndexPaths: method.

I am calling a resource on the internet and creating entities based on the data i receive, for each entity I create and populate, I immediately save the entity to the managed object context. I can see each of the NSFetchedResultControllers delegate methods get invoked, and in the didChangeObject, I insert the new row to the tableview.

I do not see the rows being inserted into the table view until the method that retrieves and saves finishes, even though all the tableview datasource methods are being called during the process.

Thanks,