Hidden UINavigationController inside UITabBarController - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T23:52:26Zhttp://stackoverflow.com/feeds/question/284321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller1Hidden UINavigationController inside UITabBarControlleradam2008-11-12T15:36:08Z2009-05-10T20:46:59Z
<p>I have an application with 5 UIViewControllers each inside a corresponding UINavigationController, all tucked inside a UITabBarController that displays 5 tabs at the bottom of the screen.</p>
<p>I want to display another UIViewController (inside a UINavigationController) when a dialog button is pressed.</p>
<p>This view should only be loaded and unloaded programatically; ie. it should not appear in the tab bar. However, I want the tab bar to be visible always.</p>
<p>If I add the [UINavigationController view] to [self window] the Tab Bar is covered. If I add it to any other layer, the Navigation Controller adds on the compensation it has for the status bar so appears further down than expected.</p>
<p>A solution would be to have the 6th Nav Controller added to the Tab Bar with the others, but with its tabBarItem hidden. Then I can show it and hide it using the tabBars selectedIndex property.</p>
<p>Accessing the tabBarItem through the View Controller shows no obvious way of doing this.</p>
<p>Anyone have any ideas?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller/284711#28471110Answer by wisequark for Hidden UINavigationController inside UITabBarControllerwisequark2008-11-12T17:40:43Z2008-11-12T17:40:43Z<p>It sounds as though you have a mess on your hands. A <code>UINavigationController</code> is a distinct object that is very different from a <code>UITabBarController</code>. In general, your application should have a tab controller, one of who's tab's loads a <code>UINavigationController</code> which in turn loads it's views - not that both maintain management over the different views. It is also improper to refer to the display of a <code>UIViewController</code> as such an object doesn't have a visual representation. In the case of a <code>UINavigationController</code>, the navigation controller object is responsible for displaying a navigation bar and a table view (in the most common case) and for managing the display of all the views in the navigation hierarchy. It itself has no corresponding representation on screen. Similarly, a <code>UITabBarController</code> presents a tab bar and is responsible for the loading and unloading of the views and/or view controllers attached to the tab buttons. If we were to present this as an image, it would look something like this -
<img src="http://img.skitch.com/20081112-2sqp7q4wafa34te1ga337u4k8.png" alt="alt text" /></p>
http://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller/285257#2852571Answer by Kendall Helmstetter Gelner for Hidden UINavigationController inside UITabBarControllerKendall Helmstetter Gelner2008-11-12T20:35:56Z2008-11-12T20:35:56Z<p>The best idea I could think of would be to either push a modal navigation controller for your view (which would hide the tab bar which you do not want), or to get the tab bar controller current selected view controller (really your navigation controller for a tab) and push your new view controller on there - and then pop that view when another tab is selected with a tab bar delegate.</p>
<p>It seems wierd to me to push the view onto random tabs though, if the view is created from a dialog that is modal, I don't see why the view itself should not also be modal and hide tabs.</p>
http://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller/286644#2866440Answer by adam for Hidden UINavigationController inside UITabBarControlleradam2008-11-13T09:37:24Z2008-11-13T09:37:24Z<p>wisequark, I think you completely misunderstood and you have almost rewritten the architecture of my application.. however I have a seperate navigation controller for each view as they are mutually exclusive and there is no concept of "drilling down"</p>
<p>Kendall, this is what I expect I will have to do - have the modal view appear with a hide button to bring back the normal interface - but it would be nice to keep the tab bar always visible so I was just wondering if anyone knew of a way.</p>
<p>Thanks anyway!</p>
http://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller/287534#2875342Answer by Alex for Hidden UINavigationController inside UITabBarControllerAlex2008-11-13T17:05:21Z2008-11-13T17:05:21Z<p>Well, it sounds like what you really want to do is present a modal view with the tab bar still visible. You could add your view as a subview of the tab bar controller's view. The tab bar's view is, oddly enough, not the tab bar itself but rather a view containing the tab bar and the selected item's view.</p>
<p>Alternatively, you could try calling presentModalViewController:animated: with the <em>selected tab</em> (i.e. [tabBarController.selectedViewController presentModalViewController:animated:]) as the receiver instead of the tab bar. I seem to recall doing this once (quite by accident) and the tab bar remained visible.</p>
<p>One more thought: since each of your five view controllers is a UINavigationController, you could always pushViewController:animated: onto the selected view controller, then hide the back button. Your view will just appear without animation. But you'll need to remember to pop your view controller off the stack whenever the user switches to another tab. That might take a bit more work.</p>
http://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller/846071#8460711Answer by Nucc for Hidden UINavigationController inside UITabBarControllerNucc2009-05-10T20:46:59Z2009-05-10T20:46:59Z<p>Here is a <a href="http://developer.apple.com/iphone/library/featuredarticles/ViewControllerPGforiPhoneOS/CombiningToolbarandNavigationControllers/CombiningToolbarandNavigationControllers.html#//apple%5Fref/doc/uid/TP40007457-CH8-SW1" rel="nofollow">link</a> from developer.apple.com where describe how to implement:</p>