有没有什么方法可以使用 AlamofireImage 下载图像并获得有关下载进度的某种反馈,同时利用它的UIImage Extensions、Image Filters 和 Image Cache的强大功能?
我知道我可以退回到普通的Alamofire.request
+responseImage
但我想保持简单并使用UIImageView Extension。
谢谢!
有没有什么方法可以使用 AlamofireImage 下载图像并获得有关下载进度的某种反馈,同时利用它的UIImage Extensions、Image Filters 和 Image Cache的强大功能?
我知道我可以退回到普通的Alamofire.request
+responseImage
但我想保持简单并使用UIImageView Extension。
谢谢!
用 Swift 3.0.2 试试这个:
let utilityQueue = DispatchQueue.global(qos: .utility)
let url = "http://kingofwallpapers.com/code/code-006.jpg"
Alamofire.download(url)
.downloadProgress(queue: utilityQueue) { progress in
print("Download Progress: \(progress.fractionCompleted)")
}
.responseData { response in
print("Response is \(response)")
if let data = response.result.value {
let image = UIImage(data: data)
}
}
目前没有任何方法可以在下载图像时将 AlamofireImage 与UIImageView
扩展一起使用以接收进度更新。最初没有添加它的原因是大多数用户似乎不需要这样的功能。我很想讨论更多,看看这是否是我们真正希望在未来版本中添加到 AlamofireImage 的功能。
您愿意提出一个贯穿您的用例的问题吗?我只是想确切地知道您期望它如何工作以及为什么您实际上需要进度报告。
使用带有进程的 Alamofire 下载图像
下载带有进度的文件
Alamofire.download(.GET, "url...", destination: destination)
.progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in
print(totalBytesRead)
// This closure is NOT called on the main queue for performance
// reasons. To update your ui, dispatch to the main queue.
dispatch_async(dispatch_get_main_queue()) {
print("Total bytes read on main queue: \(totalBytesRead)")
}
}
.response { _, _, _, error in
if let error = error {
print("Failed with error: \(error)")
} else {
print("Downloaded file successfully")
}
}