gpt4 book ai didi

iOS 7 UIWebView 拦截警报

转载 作者:行者123 更新时间:2023-11-29 10:53:02 25 4
gpt4 key购买 nike

在我的应用程序中有一个显示网页的 UIWebView。它有时会在 UIAlertView 中显示非常烦人的错误。我想拦截它并以更复杂的方式显示错误。

有没有一种方法可以让我拦截函数中的错误消息并自行决定我想用它做什么?

提前致谢!

最佳答案

这似乎可以做到:

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
JSContext *ctx = [webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
ctx[@"window"][@"alert"] = ^(JSValue *message) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"JavaScript Alert" message:[message toString] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
};
}

注意:仅在 iOS 8 上测试。

关于iOS 7 UIWebView 拦截警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19638645/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com