Transparent panel with table

I have a panel with a transparent background. One of the tab items loads the view using a UITableView. Is it possible for this tabular view to be "under" in a tab? That is, the tableview will fill the entire screen size.

thank

+3
source share
1 answer

At the moment, you click viewController in the navigation stack, you can use this:

[controller setHidesBottomBarWhenPushed:YES];
[self.navigationController pushViewController:controller];

Or see this topic for manual hiding / showing

How to hide uitabbarcontroller

+1
source

All Articles