gmoledina / GMGridView

A performant Grid-View for iOS (iPhone/iPad) that allows sorting of views with gestures (the user can move the items with his finger to sort them) and pinching/rotating/panning gestures allow the user to play with the view and toggle from the cellview to a fullsize display.
MIT License
2.3k stars 512 forks source link

Can I use NSFetchedResultsController with this library? #98

Open Ricardo1980 opened 12 years ago

Ricardo1980 commented 12 years ago

Can I use NSFetchedResultsController with this library? I think it can be useful, specially when I add an element to my data model from another part of the program. I ask this question because I'm not sure if NSFetchedResultsController can be only used with UITableViewController. Thanks.

tonyarnold commented 12 years ago

NSFetchedResultsController is not tied to UITableViewController (or any other type of controller) — it's a fairly generic data source. I am using it in one of my apps to back a GMGridView instance, so it's definitely possible.

rhummelmose commented 12 years ago

Super easy to implement.