I'm trying to build an iPad app working with Core Data. But I'm facing a design and a coding issue. Let's say I add one UIViewController to my window and inside that viewcontroller, I need to display two tableviews (2 different entities) and 2 views (2 others entities) (So I need to fetch 4 entites for one UIViewController). I only found tutorials explaining how to use NSFetchedResultsController with one UITableView !
My question is : Should I declare 2 UITableView and 2 NSFetchedResultsController in my viewController ? Or should I declare 2 UITableViewController and then inside each of them declare one NSFetchedResultsController ? What about the two others views ? I should use NSFetchRequest ? If yes, where ? inside the views or inside the UIViewController ?
I know it's a lot a questions :). Thanks in advance for your help.