OStack程序员社区-中国程序员成长平台

标题: ios - Swift 3 - 关闭当前的 ViewController 并打开新的 ViewController [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 23:44
标题: ios - Swift 3 - 关闭当前的 ViewController 并打开新的 ViewController

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

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

这是我尝试使用的代码,但是当我尝试这样做时, View Controller 会关闭,而其余代码不会执行

//Close current VC
self.dismiss(animated: true, completion: nil)

//Open the new VC
let mainStoryboard: UIStoryboard = UIStoryboard(name:"Main",bundle:Bundle.main)
let secondViewController: SecondViewController = mainStoryboard.instantiateViewController(withIdentifier: "SecondViewController") as! SecondViewController
self.present(secondViewController, animated: true, completion: nil)

有人可以帮帮我吗?我只需要从第一个 VC 到第二个 VC 的简单过渡并关闭第一个 VC。



Best Answer-推荐答案


问题是,“self”不能呈现新的 ViewController,因为它是被解除的 ViewController。

你可以尝试调用 self.presentingViewController?.present(secondViewController, animated: true, completion: nil)

关于ios - Swift 3 - 关闭当前的 ViewController 并打开新的 ViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41585665/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4