I want to hide the navigation bar for a specific view, and add my own custom "back button"
The way I am doing this now is by:
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
self.navigationController?.navigationBarHidden = true
}
It works but it takes 0.2 sec before the bar gets hidden, so you kinda can see it jump up once the view loads. Is there any other way to hide it?