So, I have a simple navigation controller with a signature, a hit, and you go to the home page. The problem is when you go to the home page following the navigation controller.


As you can see in the last picture (home page), the navigation bar remains. When the user clicks "Finish" on the first image, I use self.performSegueWithIdentifier("loginTrue", sender: nil)
to go to the "home page". I tried using
self.presentingViewController?.dismissViewControllerAnimated(true, completion: nil)
But nothing happens. So, to wrap it all up, any idea on how I can βrejectβ the navigation controller from the βhome pageβ? Thank!
Idris source
share