Swiftはプログラムで別のビューコントローラー/シーンに移動します
次のコードを使用して、プログラムで別のViewControllerに移動しています。それはうまく機能しますが、それはどういうわけかを隠しますnavigation bar。これを修正するにはどうすればよいですか?(ナビゲーションバーは、重要な場合にを埋め込むことViewControllerで作成されnavigation controllerます。) let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil) let nextViewController = storyBoard.instantiateViewControllerWithIdentifier("nextView") as NextViewController self.presentViewController(nextViewController, animated:true, completion:nil)