当前位置:  开发笔记 > IOS > 正文

当警报被解除时,如何弹出RootViewController?

如何解决《当警报被解除时,如何弹出RootViewController?》经验,为你挑选了1个好方法。

您最大的问题是您没有对警报按钮的处理程序执行任何操作.相反,您在发出警报后立即尝试执行弹出和解除.

移动代码以将控制器弹出到Ok按钮的警报处理程序中.

@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,所以语法可能会有点偏差.



1> rmaddy..:

您最大的问题是您没有对警报按钮的处理程序执行任何操作.相反,您在发出警报后立即尝试执行弹出和解除.

移动代码以将控制器弹出到Ok按钮的警报处理程序中.

@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,所以语法可能会有点偏差.

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有