Today I've got another pretty basic question. Let me first describe the scenario.
I have two NSManagedObjectModel classes. Say A and B, where A holds some instances of B. In my app I display all instances of A in a UITableView. The instances are being fetched using a NSFetchedResultsController.
Now, when one of the As gets selected, I would push another UITableViewController to display A's instances of B.
So how to you get the all Bs? For me there have always been two solutions:
1) Pass the instance of A to B and just access A's Bs.
BViewController *bvc = [[BViewController alloc … bvc.a = a;
2) Pass only a key and create a new NSFetchedResultsController in B.
So how do you do that? I've been doing 1) almost exclusively for the last couple of months, but I'd love to have the NSFetchedResultsControllerDelegate's features in each of my UIViewController subclasses.