我想在一个接口控制器中设置一个倒计时器,当时间为0时,我想让它执行一个切换到下一个接口控制器的过程。
有什么方法可以做到这一点?
if secondsLeft == 0 {
pushController(withName: "RunGameInterfaceController", context: nil)
尝试使用main.storyboard在两个控制器之间创建一个转场。
然后,给这个转接点一个标识符。这可以在右栏菜单的 "storyboard and Segue "标签下完成。
在你的代码中,不要使用 "pushController"
使用 "self.performSegue(withIdentifier: "yourSegueName", sender: self)"
确保将 "yourSegueName "替换为你的标识符,然后你就可以开始了!