Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 iOS 应用程序中有一个 UIWebView,它显示了一个很长的网页。如果页面由于某种原因无法加载,我会在我的 webView:didFailLoadWithError: 方法中显示一个警报。但是,用户可能会在页面完全加载之前点击某个链接,并且 UIWebView 也将其视为错误,我想默默地忽略它。有没有办法找出页面加载错误源于用户点击链接?
正如 user1135469 建议的那样,error.code 似乎是关键。当用户点击链接时它是 NSURLErrorCancelled,忽略这个错误代码是安全的。