Hide tab bar in IOS swift app

后端 未结 8 2234
走了就别回头了
走了就别回头了 2020-12-22 19:19

I\'m trying to figure out how to hide the tab bar in my iOS swift app. I don\'t care about any fancy animations or anything. Just something I can put in the ViewDidLoad() fu

8条回答
  •  误落风尘
    2020-12-22 19:35

    Before push set controller.hidesBottomBarWhenPushed = true

    let objCreateEventVC = CreateEventVC()
    objCreateEventVC.hidesBottomBarWhenPushed = true
    self.navigationController?.pushViewController(objCreateEventVC, animated: false)
    

提交回复
热议问题