我在[defaults]
transport = ssh
[ssh_connection]
ssh_args = -o ForwardAgent=yes
内有一个UIViewController
。 UIPageViewController
已嵌入UIPageViewController
。
我通过以下方式调用第二个UIViewController:
UINavigatonController
self.navigationController?.pushViewController(vc, animated: true)
有一个带有leftButton项的vc
(通过InterfaceBuilder)。按下此按钮后,我想通过以下方式返回第一个viewController:
UINavigationBar
这引起了我的兴趣。我错过了什么?非常感谢帮助。
PS:@IBAction func backBtn(sender: AnyObject) {
navigationController?.popViewControllerAnimated(true)
}
的NavigationBar隐藏在整个项目中。我希望每个叫做VC的VC都有自己的NavigationBar。