如果我打电话(在UIViewController
)
alert.dismiss(animated: false, completion: nil)
print("executed after dismiss?")
鉴于警报是先前提出的UIAlertController
,dismiss方法是否同步执行?
我可以这样做:
alert.dismiss(animated: false, completion: nil)
let newAlert = UIAlertController(...)
present(newAlert, animated: true, completion: nil)
在呈现newAlert
时不必担心问题?
答案 0 :(得分:7)
与大多数动画方法一样,当你解雇UIAlertController
时,你只是在开球。视图控制器被异步关闭和删除。为了测试这个,我们可以使用这样的代码:
let alert = UIAlertController(title: "Oh No!", message: ":(", preferredStyle: UIAlertControllerStyle.alert)
self.present(alert, animated: true, completion: nil)
print(presentedViewController) // Optional(<UIAlertController: 0x7fefe901e670>)
alert.dismiss(animated: true, completion: nil)
print(presentedViewController) // Optional(<UIAlertController: 0x7fefe901e670>)
如上所示,警报视图控制器不会立即作为呈现的视图控制器被删除。您可以在解除旧警报后立即显示新警报。但是,最佳做法是将第二个警报的代码放在第一个警报的完成处理程序中。在呈现的视图控制器上调用viewDidDisappear
之后调用此完成处理程序。