Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个透明背景的标签栏。其中一个选项卡项加载了一个包含 UITableView 的视图。是否可以让该表格视图进入标签栏“下方”?也就是说,让 tableview 填满整个屏幕大小。
谢谢
在您将 viewController 推送到导航堆栈上的那一刻,您可以使用它:
[controller setHidesBottomBarWhenPushed:YES]; [self.navigationController pushViewController:controller];
或查看此主题以手动隐藏/显示它
如何隐藏uitabbar控制器