presenting ViewController with NavigationViewController swift
I have system "NavigationViewController -> MyViewController", and I programmatically want to present MyViewController inside a third view controller. The problem is that I don't have navigation bar in MyViewController after presenting it. Can you help me? var VC1 = self.storyboard.instantiateViewControllerWithIdentifier("MyViewController") as ViewController self.presentViewController(VC1, animated:true, completion: nil) stefandouganhyde Calling presentViewController presents the view controller modally , outside the existing navigation stack; it is not contained by your UINavigationController