UIWebView警报不显示页面URL?

时间:2010-02-23 12:35:54

标签: iphone uiwebview

我在我的应用程序中使用UIWebview,当出现错误时,它会显示一条警告消息。

消息很好,但警告消息的标题显示页面URL,这没有帮助。

无论如何要摆脱它并改为显示自定义文本?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

请查看UIWebViewDelegate protocoll的实现 - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error已定义。在那里,您应该使用UIAlertView设置- (id)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles