ios – 放松后显示警报segue停止了segue.展开segue完成后如何确保显示警报?

我有一个从A视图控制器到B视图控制器的展开segue.

网络操作在B中完成.操作完成后,响应将显示在A视图控制器中.

我成功地建立了这个结构.但是有一个问题:

当我试图显示警报时,它显示但停止了segue. segue完成后如何确保警报显示.

错误在这里:

2016-04-27 14:39:28.350 PROJECT[9100:128844] Presenting view controllers on detached view controllers is discouraged <PROJECT.FeedTableViewController: 0x7a928c00>.
2016-04-27 14:39:28.359 PROJECT[9100:128844] popToViewController:transition: called on <UINavigationController 0x7c12a800> while an existing transition or presentation is occurring; the navigation stack will not be updated.

A中的展开处理程序:

@IBAction func unwindToFeed(segue: UIStoryboardSegue) {
        jsonArray[rowFromShare!]["ApplicationDataUsers"] = jsonFromShare!
        tableView.reloadData()
        ShowErrorDialog("Success", message: successMessageFromShare!, buttonTitle: "OK")
    }

//Error Dialog
func ShowErrorDialog(title:String, message:String, buttonTitle:String){
    let alert = UIAlertController(title: title, message: message, preferredStyle: .Alert)
    alert.addAction(UIAlertAction(title: "OK", style: .Default) { _ in })
    self.presentViewController(alert, animated: true){}
}

在B中展开触发器:

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {

    if segue.identifier == "unwindToFeed"{
        let feedTable = segue.destinationViewController as! FeedTableViewController
        feedTable.rowFromShare = row
        feedTable.jsonFromShare = jsonToShare
        feedTable.successMessageFromShare = successMessageToShare
    }

    // Get the new view controller using segue.destinationViewController.
    // Pass the selected object to the new view controller.
}

A = FeedTableViewController
B = ShareTableViewController

segue完成后如何确保显示警报?

最佳答案 正如您所发现的那样,在展开segue完成之前调用unwindToFeed方法.

一种方法是在unwindToFeed方法中设置一个布尔值,然后在知道segue完成时在viewDidAppear中检查这个布尔值.如果设置了布尔值,则可以显示警报:

@IBAction func unwindToFeed(segue: UIStoryboardSegue) {
    jsonArray[rowFromShare!]["ApplicationDataUsers"] = jsonFromShare!
    tableView.reloadData()
    self.unwinding = true
}

override func viewDidAppear(animated: Bool) {
   super.viewDidAppear(animated)
   if (self.unwinding) {
       self.ShowErrorDialog("Success", message: successMessageFromShare!, buttonTitle: "OK")
   self.unwinding=false
   }
点赞