美文网首页iOS菜鸟食谱
[iOS] TabBarController push后隐藏Ta

[iOS] TabBarController push后隐藏Ta

作者: 老初 | 来源:发表于2016-01-08 11:34 被阅读2250次

    在 TabBarController 中 push 到下个界面时,如果不做任何设置,在 push 后的界面是可以看到 TabBar 的。
    有两种办法可以隐藏:

    • 代码中设置:
    let viewController = SecondViewController()
    viewController.hidesBottomBarWhenPushed = true
    self.navigationController?.pushViewController(viewController, animated: true)
    
    • StoryBoard中,选中“Hide Bottom Bar on Push”


      StoryBoard

    相关文章

      网友评论

        本文标题:[iOS] TabBarController push后隐藏Ta

        本文链接:https://www.haomeiwen.com/subject/trwfkttx.html