UIWebView加载时间

发布于 2024-12-08 23:13:21 字数 116 浏览 0 评论 0原文

我有 webView,我尝试处理连接不良的情况。 WebView 在没有连接的情况下尝试在 5 分钟内加载内容,然后发送错误。

例如,如何将加载时间更改为 1 分钟?

I've got webView and I try to handle case with bad connection. WebView tries to load content during 5 mins without connection and sends error after.

How can I change time of loading to 1 min for example?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜唯美灬不弃 2024-12-15 23:13:21

您可以尝试 performSelector:withObject:afterDelay:

当它开始加载时:

- (void)webViewDidStartLoad:(UIWebView *)webView{
  [self performSelector:@selector(stop_bad_link) withObject:nil afterDelay:60.0 ];
}

如果加载成功:

- (void)webViewDidFinishLoad:(UIWebView *)webView{
 [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(stop_bad_link) object:nil];
}

如果链接错误:

-(void)stop_bad_link{
 if([webView isLoading]!=NO)[webView stopLoading];
}

You may try performSelector:withObject:afterDelay:

When it starts loading:

- (void)webViewDidStartLoad:(UIWebView *)webView{
  [self performSelector:@selector(stop_bad_link) withObject:nil afterDelay:60.0 ];
}

If loaded successfully:

- (void)webViewDidFinishLoad:(UIWebView *)webView{
 [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(stop_bad_link) object:nil];
}

If its a bad link:

-(void)stop_bad_link{
 if([webView isLoading]!=NO)[webView stopLoading];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文