我的第一个 View Controller 有一个按钮,它会触发@IBAction goTo2ndVc()
,它会显示第二个 View Controller :
class FirstVC: UIViewController {
...
@IBAction func goTo2ndVc() {
let secondVc = SecondVC(label: "I am second vc.")
self.presentViewController(secondVc, animated: true, completion: nil)
}
按下按钮时,屏幕上会显示第二个 View Controller 。没问题。
在第二个 View Controller 中,还有一个用于返回到第一个 View Controller 的按钮:
class SecondVC: UIViewController {
...
@IBAction func backToFirst(sender: AnyObject) {
print("go back ...")
self.navigationController?.popViewControllerAnimated(true)
}
}
我在网上看了,人们建议使用 navigationController?.popViewControllerAnimated(true)
回到以前的 Controller 。但是当我按下返回按钮时,我可以看到打印消息“返回 ...”,但应用程序不会返回到第一个 View Controller 。为什么?
@IBAction func backToFirst(sender: AnyObject) {
print("go back ...")
self.dismissViewControllerAnimated(true, completion: nil)
}
在 Swift 3 中
self.dismiss(animated: true, completion: nil)
您不应该使用导航 Controller ,因为您在添加第二个 View Controller 时没有使用它。这就是为什么简单地调用 dismissViewControllerAnimated
方法。
只有在通过 pushViewController
方法添加 View Controller 时,才必须使用 UINavigationController
及其 pop
方法。
在这里熟悉导航 Controller 的概念:https://developer.apple.com/library/ios/documentation/WindowsViews/Conceptual/ViewControllerCatalog/Chapters/NavigationControllers.html
关于ios - 返回上一个 View Controller 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35814405/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |