关闭导航控制器
Dismiss a navigationController
我有 viewcontroller,它嵌入到导航控制器中。当我单击此 viewController 中的 UIBarButtonItem
时,它将以模态方式显示一个新的 navigationController。我怎样才能关闭这个 navigationController?
我试过跟随,但不起作用?
self.navigationController?.popViewControllerAnimated(true)
尝试
self.dismissViewControllerAnimated(true, completion:nil)
我有 viewcontroller,它嵌入到导航控制器中。当我单击此 viewController 中的 UIBarButtonItem
时,它将以模态方式显示一个新的 navigationController。我怎样才能关闭这个 navigationController?
我试过跟随,但不起作用?
self.navigationController?.popViewControllerAnimated(true)
尝试
self.dismissViewControllerAnimated(true, completion:nil)