Hello guys,
Hope you can help me I'm a bit lost over here.
I need a TabBar to be placed on the top of a view. That might sound easy but on Interface builder there's no way to place the bar at the top, everytime I change the settings of "Top Bar" or "Bottoom Bar" in the IB goes back to "Top Bar" Unspecified and "Bottom Bar" Tab Bar.
I tried to add a TabController programatically and same thing.
I've seen tab bars at the top, or was it "Tool Bars" working as Tab Bars.
I know you can add the Tab bar, not the controller, to the view and place it wherever, but how to add the views to be shown?
Thanks.
[EDIT]
Hey guys I was able to set a TabBar and set this method:
- (void)tabBar

UITabBar *)barra didSelectItem

UITabBarItem *)item{
if(item.tag == 1)
[self.view addSubview:artistasPorNombre.view];
else
[self.view addSubview:artistasPorEscenario.view];
}
When I tap the view loads hidding half of the TabBar, is there a way to push it. Also Im adding Subviews, will I have memory problems or it is just adding the same view, but not creating it one time and another?
Thanks.