Showing alert after unwind segue stops the segue. How do I make sure alert is shown after unwind segue is completed?(在展开分段停止分段后显示警报。如何确保在展开段完成后显示警报?)
问题描述
我有一个从A视图控制器到B视图控制器的展开段。在B中执行网络操作。操作完成后,响应将显示在A视图控制器中。
我成功地制作了这个结构。但是,有一个问题:
当我尝试显示警报时,它显示但停止了段。如何确保段完成后显示警报。
错误如下:
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=FeedTableView控制器
B=ShareTableView控制器
如何确保在段完成后显示警报?
推荐答案
如您所见,在展开段完成之前调用unwindToFeed
方法。
unwindToFeed
方法中设置一个布尔值,然后在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
}
这篇关于在展开分段停止分段后显示警报。如何确保在展开段完成后显示警报?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!