I'm pretty new in iphone programming and have stumbled upon this issue which I guess should be pretty basic stuff.
I am using a tab bar application created from a template in XCode IOS 5.1. It works fine and creates 3 screens in the storyboard (tab bar controller + + 2 descended views) but when I try adding a top bar to these 2 views there is a problem...
I do this by adding the top navigation bar in interface builder from object inspector for the tab bar controller. After ticking this option the top bar shows perfectly in my storyboard for all 3 screens (tabbarcontroller + 2 descended views) but after I run the project the top navigation bar is no longer there.
What am I missing here? Why is there no top bar?
To add a tab, first drag a new View Controller object to the storybard. Next control-drag from the tab bar controller to new view controller and select view controllers under Relationship Segue . Your tab bar controller will update with a new tab.
A tab bar lets people navigate among different areas of an app, like the Alarm, Stopwatch, and Timer tabs in the Clock app. If you need to provide controls that act on elements in the current view, use a toolbar instead. Make sure the tab bar is visible when people navigate to different areas in your app.
They allow a user of to switch between multiple arbitrary view controllers by maintaining an array of UIViewControllers . They can be used to allow the user to navigate between entirely different parts of your application, or they can be used to display two different views of the same backing data.
If you don't want that behavior, you should set hidesBottomBarWhenPushed to true where applicable. This will hide the tab bar along with any toolbars you had showing, but only when a view controller is pushed onto the navigation stack. This allows you to show the tab bar at first, then hide it when you need more room.
If you want to show a navigation bar on two ViewControllers
of your tab bar based application, then you can do as follows:
Delete the viewcontroller1, then drag ViewController
into storyboard from library and select it and go to Editor\Embed In\Navigation Controller.
From the UITabBarController
, click on tabbar and right click, select relationship and drag it to the navigation controller. (means add the UINavigationController
as a tab).
Hope this helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With