NSURLRequest超时处理

发布于 2024-10-25 08:07:19 字数 352 浏览 5 评论 0原文

我一直在阅读 NSURLRequest timeOut 的一些问题,但我没有看到我的问题的答案。 好吧,这里是:我的 NSURLRequest 对象工作正常,但如果连接超时高于 3,我需要向用户显示一些警报。而且我不知道如何处理该超时。 任何帮助都非常感激。

NSURLRequest *requestObj = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:3] ;
[webView setDelegate:self];
[webView loadRequest:requestObj];

I've been reading some issues here with NSURLRequest timeOut, but I see no answer to my problem.
Well, here it is: my NSURLRequest object works fine, but I need to show some alert to the user if the connection time out is higher to 3. And i dun know how to handle that timeout.
Any help is really appreciate it.

NSURLRequest *requestObj = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:3] ;
[webView setDelegate:self];
[webView loadRequest:requestObj];

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

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

发布评论

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

评论(1

七颜 2024-11-01 08:07:19

为 Web 视图定义委托 - 在视图控制器的 @interface 定义中添加 ,然后在 Interface builder 中将其链接起来,

然后添加一个方法

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{

// whatever you want to do if it times out (or some other error)

}

Define a delegate for the web view -- add <UIWebViewDelegate> in the @interface definition of your view controller and then link it up in Interface builder

then add a method

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{

// whatever you want to do if it times out (or some other error)

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