I am developing my first Apple product on iOS 5. What is the best way to maintain a consistent UITabBar object across multiple scenes when I’m not using the UITabBarController? It’s just a standard UIViewController. I have the tab bar working just as I want it on one scene and I want to be able to duplicate it to my other 4-ish scenes.
Share
Assuming you really don’t want to use a
UITabViewController, then have your application delegate maintain a reference to your globalUITabBarobject and as you switch from view to view, you can just request that instance and add it the view hierarchy.