UINavigationController without navigation bar?

后端 未结 6 1699
小蘑菇
小蘑菇 2020-12-07 15:01

I have a universal app, and on the iPad version I\'m using UISplitViewController to create an interface similar to the Mail app.

I was having trouble pu

6条回答
  •  日久生厌
    2020-12-07 15:55

    Swift 3 Programmatically

    self.navigationController.isNavigationBarHidden = true
    

    or

    self.navigationController.navigationBar.isHidden = true
    

    Note: I didn't see a difference between these two approaches testing on iOS 10.

提交回复
热议问题