我在我的 iOS 应用程序中遇到了一些奇怪的问题。当我的应用程序打开并且用户按下睡眠/唤醒按钮时,应用程序调用
applicationWillResignActive
applicationDidEnterBackground
当用户向右滑动解锁屏幕时,应用程序调用
applicationWillEnterForeground
applicationDidBecomeActive
之后,它会在控制台中打印以下错误:
PBRequester failed with Error Error Domain=NSURLErrorDomain Code=-1003 "A server with the specified hostname could not be found." UserInfo=0x1cdfbc00 {NSErrorFailingURLStringKey=https://gsp10-ssl.apple.com/use, NSErrorFailingURLKey=https://gsp10-ssl.apple.com/use, NSLocalizedDescription=A server with the specified hostname could not be found., NSUnderlyingError=0x1cddca10 "A server with the specified hostname could not be found."}
我知道此错误表明未找到指定的主机名。但是哪个主机名?是https://gsp10-ssl.apple.com/use还是我用于 Web 服务的主机名?
如何调试此错误并确定其来源?