iPhone 中的 https 连接中连接失败或无响应之间的区别
Difference between a connection failed or no response in an https connection in iPhone
我们已经使用 NSURLConnection 与服务器建立连接。
在 iOS 8(Xcode 6.3) 的 https 连接中,我们能否区分连接失败或未从服务器收到响应?
如果是,请帮助我们。
NSURLConnectionDelegate
方法 -connection:didFailWithError:
为您提供描述失败原因的错误。您可以根据 error.code
- 代码列表 here.
区分不同情况
我们已经使用 NSURLConnection 与服务器建立连接。 在 iOS 8(Xcode 6.3) 的 https 连接中,我们能否区分连接失败或未从服务器收到响应? 如果是,请帮助我们。
NSURLConnectionDelegate
方法 -connection:didFailWithError:
为您提供描述失败原因的错误。您可以根据 error.code
- 代码列表 here.