我与和AlamofireImage
一起使用。我使用 Promise 链接下载 x 个图像,因为我想同步执行此操作。我似乎无法理解是自动缓存还是必须将图像显式添加到缓存中?到目前为止,我看到的唯一示例都没有使用,所以我很难找到答案。PromiseKit
Alamofire
ImageDownloader()
ImageDownloader
如果没有 - 我如何将它添加到缓存中?我试过使用:
self.imageDownloader.imageCache?.addImage(image, withIdentifier: imageUrl)
但它所做的只是增加我的内存使用量(即一遍又一遍地将相同的图像添加到缓存中)