soffes / ssdatakit

Eliminate your Core Data boilerplate code
MIT License
453 stars 57 forks source link

Fix update bug from NSFetchedResultsControllerDelegate docs #10

Closed stevemoser closed 11 years ago

stevemoser commented 11 years ago

The original code came from the NSFetchedResultsControllerDelegate docs which contains a bug. Basically using configureCell may update a cell with incorrect data when more than one cell is being updated at the same time because a mismatch between the state of the tableview and the model.

Ole explains it pretty well here.

http://oleb.net/blog/2013/02/nsfetchedresultscontroller-documentation-bug/

soffes commented 11 years ago

Oh good call! Thanks!