I'm doing a swift application in xcode 7.2.1, I'm using navigation controller in this application. I created the segues using the push, until there the navigation bars were appearing at the top. But I needed one of the ViewControllers not to show this bar, so I added that code in the ViewController viewDidLoad () that I should not show the bar.
self.navigationController?.navigationBarHidden = true
Everything worked perfectly in execution, the bar keeps appearing in all others except it, but in the Storyboard the bars no longer appear at all. disappeared from all the views. in execution it works as expected, but in storyborad it does not appear in any way, nor does it delete the view and create another. I do not know how to make them appear again, and I need them to finish editing them. Does anyone know how to make them appear again?