在 TabBarController 中 push 到下个界面时,如果不做任何设置,在 push 后的界面是可以看到 TabBar 的。
有两种办法可以隐藏:
- 代码中设置:
let viewController = SecondViewController()
viewController.hidesBottomBarWhenPushed = true
self.navigationController?.pushViewController(viewController, animated: true)
-
StoryBoard中,选中“Hide Bottom Bar on Push”
StoryBoard
网友评论