I'm developing a Core Data Master-Detail application. The detail view is a tabbed interface with each tab displaying different aspects of the model object.
Therefore, I have a:
- Master view controller (subclass of UITableView).
- Tab bar controller (default UITabBarController, not subclassed).
- 3 Detail view controllers contained within the tab bar controller.
When my application segues from the master view controller to the tab view controller, where do I stash the selected model object?
How do I share this model object with all the detail views contained within tab bar controller?