Multiple UITabBar in an application
Is it possible to have multiple TabBars in an application (of course only one visible at a time).
I have the following requirement. The top level for my application may be broken into categories A, B, C and D. I plan to implement the same using a UITabBarController with A, B, C and D as UITabBarItems.
The category A may have further sub categories of E, F, G, H.
When the user clicks on A, I would like to replace the existing TabBar with a new TabBar (a new TabBarController with TabBarItems for E, F, G, H) and a link back to the original view (displaying old TabBar and A, B, C and D as items).
Is it possible to attempt such a thing in iPhone SDK?
How should one design multiple level categorization of data in iPhone?
|