I'm working on a CoreData app that has a tab bar, each item opens a ViewController that uses the coreData.. I have looked at the recipes app and its only got one TabBar Item/viewController that uses the CoreData so its a dead end for this question..
What is the proper way to set the persistentStoreCoordinator on the other views. Based on the recipes app, in you MainappDelegate you create the ViewController and set the persistentStoreCoordinator, then link this in the NIB to the TabBarItem's child navigation controller. So what if you have more than one tabbar that wants to use CoreData, do you create another outlet in the MainAppDelegate, and link it in the Nib to the next NavigationContoller/ViewContoller?
I know I sound like i just answered my own question but is this the right way to do this? I guess the whole linking and Nibs is just so silly to me.
Is there a way I can write some code to do this?