我在我的应用程序中使用UIWebview,当出现错误时,它会显示一条警告消息。
消息很好,但警告消息的标题显示页面URL,这没有帮助。
无论如何要摆脱它并改为显示自定义文本?
感谢您的帮助。
答案 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
。