Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Transparent tabbar with tableView under

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

like image 870
BlackMouse Avatar asked May 19 '26 05:05

BlackMouse


1 Answers

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

like image 127
Wesley Avatar answered May 21 '26 19:05

Wesley