How to Hide Tab Bar Controller?

后端 未结 10 1684
猫巷女王i
猫巷女王i 2020-12-05 00:43

How to Hide Tab Bar Controller ? I want to hide the Tab Bar controller with double tap on UIImageView.

10条回答
  •  庸人自扰
    2020-12-05 01:01

    Objective-C

    [self.tabBarController.tabBar setHidden:YES];
    

    Swift 3

    self.tabBarController?.tabBar.isHidden = true
    

    Swift 2

    self.tabBarController?.tabBar.hidden = true
    

提交回复
热议问题