I have a universal app, and on the iPad version I\'m using UISplitViewController to create an interface similar to the Mail app.
UISplitViewController
I was having trouble pu
You should be able to do the following:
self.navigationController.navigationBar.isHidden = true //Swift 5
where self.navigationController is (obviously) an instance of UINavigationController. Seems to work for me, but I only briefly tested it before posting this.