ios - 返回上一个 View Controller 不起作用
<p><p>我的第一个 ViewController 有一个按钮,它会触发@IBAction <code>goTo2ndVc()</code>,它会显示第二个 ViewController :</p>
<pre><code>class FirstVC: UIViewController {
...
@IBAction func goTo2ndVc() {
let secondVc = SecondVC(label: "I am second vc.")
self.presentViewController(secondVc, animated: true, completion: nil)
}
</code></pre>
<p>按下按钮时,屏幕上会显示第二个 ViewController 。没问题。 </p>
<p>在第二个 ViewController 中,还有一个用于返回到第一个 ViewController 的按钮:</p>
<pre><code>class SecondVC: UIViewController {
...
@IBAction func backToFirst(sender: AnyObject) {
print("go back ...")
self.navigationController?.popViewControllerAnimated(true)
}
}
</code></pre>
<p>我在网上看了,人们建议使用 <code>navigationController?.popViewControllerAnimated(true)</code> 回到以前的 Controller 。但是当我按下返回按钮时,我可以看到打印消息“返回 ...”,但应用程序不会返回到第一个 ViewController 。为什么?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>@IBAction func backToFirst(sender: AnyObject) {
print("go back ...")
self.dismissViewControllerAnimated(true, completion: nil)
}
</code></pre>
<p>在 Swift 3 中</p>
<pre><code>self.dismiss(animated: true, completion: nil)
</code></pre>
<p>您不应该使用导航 Controller ,因为您在添加第二个 ViewController 时没有使用它。这就是为什么简单地调用 <code>dismissViewControllerAnimated</code> 方法。</p>
<p>只有在通过 <code>pushViewController</code> 方法添加 ViewController 时,才必须使用 <code>UINavigationController</code> 及其 <code>pop</code> 方法。</p>
<p>在这里熟悉导航 Controller 的概念:<a href="https://developer.apple.com/library/ios/documentation/WindowsViews/Conceptual/ViewControllerCatalog/Chapters/NavigationControllers.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/documentation/WindowsViews/Conceptual/ViewControllerCatalog/Chapters/NavigationControllers.html</a> </p></p>
<p style="font-size: 20px;">关于ios - 返回上一个 ViewController 不起作用,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/35814405/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/35814405/
</a>
</p>
页:
[1]