菜鸟教程小白 发表于 2022-12-12 23:44:43

ios - Swift 3 - 关闭当前的 ViewController 并打开新的 ViewController


                                            <p><p>我已经浏览了一些关于此的 SO 帖子,但没有一个明确说明如何在 Swift 3 中完成此操作。</p>

<p>简单地说,我需要关闭当前显示的 View 并打开一个新的 ViewController 。这样唯一打开的 ViewController 将是第二个 VC</p>

<p>这是我尝试使用的代码,但是当我尝试这样做时, ViewController 会关闭,而其余代码不会执行</p>

<pre><code>//Close current VC
self.dismiss(animated: true, completion: nil)

//Open the new VC
let mainStoryboard: UIStoryboard = UIStoryboard(name:&#34;Main&#34;,bundle:Bundle.main)
let secondViewController: SecondViewController = mainStoryboard.instantiateViewController(withIdentifier: &#34;SecondViewController&#34;) as! SecondViewController
self.present(secondViewController, animated: true, completion: nil)
</code></pre>

<p>有人可以帮帮我吗?我只需要从第一个 VC 到第二个 VC 的简单过渡并关闭第一个 VC。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>问题是,“self”不能呈现新的 ViewController,因为它是被解除的 ViewController。</p>

<p>你可以尝试调用 <code>self.presentingViewController?.present(secondViewController, animated: true, completion: nil)</code></p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Swift 3 - 关闭当前的 ViewController 并打开新的 ViewController,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/41585665/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/41585665/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Swift 3 - 关闭当前的 ViewController 并打开新的 ViewController