NSURLRequest超时处理
我一直在阅读 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为 Web 视图定义委托 - 在视图控制器的
@interface
定义中添加
,然后在 Interface builder 中将其链接起来,然后添加一个方法
Define a delegate for the web view -- add
<UIWebViewDelegate>
in the@interface
definition of your view controller and then link it up in Interface builderthen add a method