프로그래밍 방식으로 다른 ViewController로 이동하기 위해 다음 코드를 사용하고 있습니다. 잘 작동하지만 navigation bar
. 이 문제를 어떻게 해결합니까? (탐색 표시 줄이를 embeding에 의해 만들어진 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)