繁体   English   中英

如何在SWIFT中解除没有动作的UIAlertController?

[英]How to dismiss an UIAlertController with no actions in SWIFT?

我的图像下载时显示UIAlertController。 下载完成后,我想推送一个视图控制器。 我在控制台中有错误,因为我没有关闭警报控制器:

pushViewController:animated: called on <UINavigationController 0x7fb190c6ee00> while an existing transition or presentation is occurring; the navigation stack will not be updated.

在我的主视图控制器中,当下载完成时,我推送另一个视图:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    //....

    var alert = UIAlertController(title: "Alert", message: text, preferredStyle: UIAlertControllerStyle.Alert)
    self.presentViewController(alert, animated: true, completion: nil)


    dispatch_async(dispatch_get_main_queue(), {
        if let cellToUpdate = tableView.cellForRowAtIndexPath(indexPath) {
               self.performSegueWithIdentifier("postview", sender: self)

        }
   })
}

我尝试过dismissViewControllerAnimated,但我有完全相同的错误:

dispatch_async(dispatch_get_main_queue(), {
            if let cellToUpdate = tableView.cellForRowAtIndexPath(indexPath) {
                   alert.dismissViewControllerAnimated(true, completion: nil)
                   self.performSegueWithIdentifier("postview", sender: self)

            }
       })

在解除上一个视图控制器之前,不应调用performSegueWithIdentifier 要正确计时,请从完成处理程序执行此操作:

dispatch_async(dispatch_get_main_queue(), {
    if let cellToUpdate = tableView.cellForRowAtIndexPath(indexPath) {
       alert.dismissViewControllerAnimated(true, completion: {
           self.performSegueWithIdentifier("postview", sender: self)
       })
    }
})

现在执行segue的调用在解雇结束之前不会启动,从而防止您看到的错误。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM