I'm struggling with a CoreData related problem for a while now:
I have a View-based application with a tabbar in it. The first two tabs are view controllers that display content from my CoreData, the third tab has a UIPickerView, where I can select data. The third and the second view controllers then should select the right entity based on the UIPickerView selection.
To clarify this a little bit more: in my managedobjectcontext I have 16 entities. Based on the UIPickerView selection in ThirdViewController I want to use the corresponding entity and update the FirstViewController and SecondViewController.
This should also be a persistent solution, so that the user can quit the application, but the selection from UIPickerView should be stored. Maybe this is something for NSUserDefaults?
Any help would be greatly appreciated!
Personentity in your data model to describe a person i.e. firstName,lastName, but a specific individual, say "Bob Smith" would described by a particular managed object initialized to thePersonentity. Which do you need to persist from ViewController#3. - TechZen