UIWebView 的任何类别是否可能出现错误?在我的应用程序中,我需要显示加载 url 时发生的实际错误。我可以在 didFailLoadWithError 方法中打印错误,但会给出关于错误的详细描述,例如
didFailLoadWithError Error Domain=NSURLErrorDomain Code=-1003 "A server with the specified hostname could not be found." UserInfo=0x895fb10 {NSErrorFailingURLStringKey=https://mobilelogin.bwanet.ca/mdninput.html?csphostid=J13y8E9t000Mb3ZK00001H7R, NSErrorFailingURLKey=https://mobilelogin.bwanet.ca/mdninput.html?csphostid=J13y8E9t000Mb3ZK00001H7R, NSLocalizedDescription=A server with the specified hostname could not be found., NSUnderlyingError=0x8c68f20 "A server with the specified hostname could not be found."}
我将如何对这些可能的错误进行分类,我想将其显示为“找不到指定的主机名”“url 超时错误”等。