iOS Swift:如何查找NSURLSession是否已超时

时间:2015-07-13 04:56:14

标签: ios swift nsurlsession

在我正在构建的iOS应用中,我正在尝试在会话超时时向用户显示消息。我阅读了NSURLSessionDelegate的文档,但是如果会话超时,则无法找到让我知道的任何方法。我该怎么做呢?任何帮助表示赞赏。

2 个答案:

答案 0 :(得分:12)

您可以这样调用方法:

let request = NSURLRequest(URL: NSURL(string: "https://evgenii.com/")!)
    let task = NSURLSession.sharedSession().dataTaskWithRequest(request) { (data, response, error) in

        if error != nil {

            if error?.code ==  NSURLErrorTimedOut {
                println("Time Out")
                //Call your method here.
            }
        } else {

            println("NO ERROR")
        }

    }
    task.resume()

答案 1 :(得分:2)

我正在使用Swift extension来检查错误是否超时或其他网络错误,使用Swift 4

extension Error {

    var isConnectivityError: Bool {
        // let code = self._code || Can safely bridged to NSError, avoid using _ members
        let code = (self as NSError).code

        if (code == NSURLErrorTimedOut) {
            return true // time-out
        }

        if (self._domain != NSURLErrorDomain) {
            return false // Cannot be a NSURLConnection error
        }

        switch (code) {
        case NSURLErrorNotConnectedToInternet, NSURLErrorNetworkConnectionLost, NSURLErrorCannotConnectToHost:
            return true
        default:
            return false
        }
    }

}