UIAlertController解除完成永远不会被调用

时间:2017-06-24 03:11:09

标签: swift uialertcontroller

在以下代码中,当我的Web视图无法加载时,正如预期的那样,使用“重试”按钮正确显示警报。点击“重试”按钮时警报会消失,但永远不会调用完成。这是为什么?

func webView(_ webView: UIWebView, didFailLoadWithError error: Error) {
    let alert = UIAlertController(title: "Network Error", message: "There was a error loading the page.", preferredStyle: .alert)
    alert.addAction(UIAlertAction(title: "Retry", style: .default, handler: { _ in
        alert.dismiss(animated: true, completion: {
            self.webView.loadHTMLString("Reloaded", baseURL: nil)
        })
    }));

    self.present(alert, animated: true, completion: nil)
}

2 个答案:

答案 0 :(得分:8)

请勿在提醒操作中调用alert.dismiss。当用户点击其中一个警报按钮时,警报控制器将自动被解除。

你只需要:

alert.addAction(UIAlertAction(title: "Retry", style: .default, handler: { _ in
    self.webView.loadHTMLString("Reloaded", baseURL: nil)
}))

答案 1 :(得分:0)

试一试我没检查过, 将UIAlertActionStyle .default更改为.Cancel。删除dismiss block直接在处理程序中加载web视图.. 希望它可以帮助你...