Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Matt Gallagher's UITableView (Revisited) + NSFetchedResultsController

Screenshot

If you look at Matt Gallagher's Cocoa With Love blog, he has a brilliant discussion (with sample code) on a fresh a beautiful retake on UITableView ... In the post, he talks about it's great many benefits of animations and heterogeneous cells, etc. However, one of the limitations he lists is a bit of a show-stopper for me. It won't work with NSFetchedResultsController. The design of loading data into the cells assumes that all that data is static and available immediately. However, if you are building a table with many rows and your data consists of objects in Core Data, your view controller would likely benefit greatly if you had access to the cacheing and dynamic loading capability of FRC.

My question: Has anyone put any effort into re-tasking his revisited UITableView design for use with NSFetchedResultsController? If someone's already done it (or is working on it), I would love (LOVE) to try it in my work or even help develop it.

like image 353
Greg Combs Avatar asked Jul 15 '11 22:07

Greg Combs


1 Answers

Good to go... Changed Table Revisited, To support the Core Data Download.

like image 116
k-thorat Avatar answered Jan 06 '23 04:01

k-thorat