0

我正在使用 swift 3。我想在执行下载任务时为 URLSession 添加超时。我确实使用配置来更改我的设置,但是它不起作用。代码没有执行超时...如果服务器没有快速响应,它将失败。

这是我的代码:

import Foundation
import UIKit

extension UIImageView {
    func loadImage(url: URL) -> URLSessionDownloadTask {

    let session: URLSession = {
        let configuration = URLSessionConfiguration.default
        configuration.timeoutIntervalForRequest = 70
        configuration.timeoutIntervalForResource = 70
        return URLSession(configuration: configuration, delegate: nil, delegateQueue: nil)
    }()

    let downloadTask = session.downloadTask(with: url, completionHandler: { [weak self] url, response, error in

        if error == nil, let url = url, let data = try? Data(contentsOf: url), let image = UIImage(data: data) {
            DispatchQueue.main.async {
                if let strongSelf = self {
                    strongSelf.image = image
                }
            }
        }
    })
    downloadTask.resume()
    return downloadTask
}
}

任何评论表示赞赏!

4

0 回答 0