本文主要是介绍uiwebview didFailLoadWithError -999 error code,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在uiwebview里,如果load一个url还没结束就立即load另一个url,那么就会callback didFailLoadWithError method,error code is -999。solution is 在didFailLoadWithError 里添加下列code
if ([error code] != NSURLErrorCancelled) {
//show error alert, etc.
}
ref link:
http://stackoverflow.com/questions/1024748/how-do-i-fix-nsurlerrordomain-error-999-in-iphone-3-0-os
这篇关于uiwebview didFailLoadWithError -999 error code的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!