Iphone: Is it possible to hide the TabBar? (Pre-iOS 8)

后端 未结 16 1606
广开言路
广开言路 2020-12-05 04:23

I have an application that uses a UITabBarController to switch between modes. When in a certain mode, I\'d like to hide the tab bar until the steps of that mode

16条回答
  •  自闭症患者
    2020-12-05 05:18

    put the statement in the init method of the UIViewController

    override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
            super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
            self.hidesBottomBarWhenPushed = true
            setupDependencyConfigurator()
        }
    

提交回复
热议问题