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.
当在 NSURLConnection 委托方法中调用失败委托时,是否有任何方法可以系统地显示错误?是否有任何帮助方法可以找到委托返回的错误编号相关的错误?
阅读NSErrorApple 的文档。它具有某些属性和方法来提供错误/失败的详细信息。一旦你熟悉了这一点,你就可以访问委托方法中提供的错误对象来了解 NSURLConnection 失败。
NSError
此外,您可以使用 object.description或object.debugDescription
object.description
object.debugDescription
如果您想查看常见错误(即外行可以理解),则只需 print error.localizedDescription。它会打印一些非常简单的东西,例如“Internet not available”等,而不是给你错误代码等。
error.localizedDescription