add a resource or something instead of just "implement NSFetchedResultsController"
WHEN THAT HAPPENS: teach them to set up an NSFetchedResultsController in the tableVC, NOT in the datastore. Setting it up in the datastore only works for this labs situation (where there is only one type of object / query necessary for a single tableview), however since...
NSFRController's delegate must be set for it to work (and you can only set one per instance of NSFRC)
a unique query might be needed per VC
teaching in-line with VC's should manage all their own shiz
...it makes more sense to setup FRCs individually (per VC).
add a resource or something instead of just "implement
NSFetchedResultsController
"WHEN THAT HAPPENS: teach them to set up an
NSFetchedResultsController
in the tableVC, NOT in the datastore. Setting it up in the datastore only works for this labs situation (where there is only one type of object / query necessary for a single tableview), however since......it makes more sense to setup FRCs individually (per VC).