I'm building an app that has 5ish tabs, each of them will have table + item details views.
So I have to create a UITabBarController
and the items instead of being the direct views are the UINavigationController
s with a default view inside.
I've done this, and it works, but..
Isn't this a waste? Looking at what the UITabBarController
does is just create a navigation controller and a set of buttons in the tab bar that pushes and pops it's items.
Is it possible to use the UITabBarController
's navigation controller somehow instead of creating the 5 new ones?