gpt4 book ai didi

ios - 解除警报时如何弹出到 RootViewController?

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:10 29 4
gpt4 key购买 nike

@IBAction func addButton(sender: AnyObject) {

let alert = UIAlertController(title: "New Exercise Added", message: "\(name)", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Ok!!", style: UIAlertActionStyle.Default, handler: nil))

self.presentViewController(alert, animated: true, completion: nil)

self.navigationController?.popToRootViewControllerAnimated(true)
self.dismissViewControllerAnimated(true, completion: {})
}

在按钮的 IB 操作功能中,我有一个警报,然后是一些代码以更改为不同的 ViewController。

程序在到达警报后的这些代码行时崩溃:

2016-01-04 17:48:27.147 FitnessApp[60584:4080964] popToViewController:transition:在现有过渡或演示发生时调用;导航堆栈将不会更新。

如何在转换完成后运行代码来更改 ViewController?

最佳答案

您最大的问题是您没有对警报按钮的处理程序执行任何操作。相反,您会在显示警报后立即尝试弹出和关闭。

移动代码以将 Controller 弹出到“确定”按钮的警报处理程序中。

@IBAction func addButton(sender: AnyObject) {
let alert = UIAlertController(title: "New Exercise Added", message: "\(name)", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Ok!!", style: UIAlertActionStyle.Default, handler: {
self.navigationController?.popToRootViewControllerAnimated(true)
// You only need the pop
//self.dismissViewControllerAnimated(true, completion: {})
}))

self.presentViewController(alert, animated: true, completion: nil)
}

注意:我不精通 Swift,所以语法可能有点偏差。

关于ios - 解除警报时如何弹出到 RootViewController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34596882/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com