Reputation: 4552
I have a tabbar with a transparent background. One of the tabbar items load a view with a UITableView in it. Is it possible to have that tableview to go "under" the tabbar? That is, have the tableview to fill the whole screen size.
Thanks
Upvotes: 3
Views: 545
Reputation: 2200
At the moment you push a viewController on a navigation stack, you can use this:
[controller setHidesBottomBarWhenPushed:YES];
[self.navigationController pushViewController:controller];
Or look at this topic for manual hiding/showing it
How to hide uitabbarcontroller
Upvotes: 1