let storyboard = UIStoryboard(name: "Next", bundle: nil) let nextVC = storyboard.instantiateViewController(withIdentifier: "next") self.present(nextVC, animated: true, completion: nil)
NavigationControllerを使う場合は
let storyboard = UIStoryboard(name: "Next", bundle: nil) let nextVC = storyboard.instantiateViewController(withIdentifier: "next") let navigationController = UINavigationController(rootViewController: nextVC) self.present(navigationController , animated: true, completion: nil)
これでNavigation Barが表示される。