如何在iPhone 3.0操作系统中修复NSURLErrorDomain错误

编程入门 行业动态 更新时间:2024-10-26 12:35:52
本文介绍了如何在iPhone 3.0操作系统中修复NSURLErrorDomain错误-999的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试更新我的iPhone应用程序以使用OS 3.0。我有一个显示页面正常的UIWebView。但是,当我单击一个链接时,它会调用我的委托给didFailLoadWithError,错误是操作无法完成。 (NSURLErrorDomain错误-999。)我确认这仍然适用于OS 2.2.1,所以它在3.0中发生了变化。

I am trying to update my iPhone app to work with OS 3.0. I have a UIWebView that shows a page fine. But when I click a link it calls my delegate for didFailLoadWithError and the error is Operation could not be completed. (NSURLErrorDomain error -999.) I verified this is still working with OS 2.2.1, so it is something changed in 3.0.

任何想法?

推荐答案

我能找到答案这里。

此主题包含此说明对于此错误:如果在完成WebView的上一个请求之前发出另一个请求,则可能会发生此错误...

This thread contained this description for this error: This error may occur if an another request is made before the previous request of WebView is completed...

我通过忽略此错误并让webview继续加载来解决这个问题。

I worked around this by ignoring this error and letting the webview continue to load.

if ([error code] != NSURLErrorCancelled) { //show error alert, etc. }

更多推荐

如何在iPhone 3.0操作系统中修复NSURLErrorDomain错误

本文发布于:2023-11-26 05:45:11,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1632867.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:操作系统   错误   如何在   iPhone   NSURLErrorDomain

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!