iOS
オンライン画像をキャッシュする
サーチ…
AlamofireImage
AlamofireImage
を使用したオンライン画像のキャッシュSwiftのAlamofire
上でAlamofire
します。 AlamofireImage
を使ってcocoapods
をインストールする
pod 'AlamofireImage', '~> 3.1'
セットアップ:
-
AlamofireImage
とAlamofire
インポートする - イメージキャッシュを設定する:
let imageCache = AutoPurgingImageCache( memoryCapacity: 111_111_111, preferredMemoryUsageAfterPurge: 90_000_000)
- リクエストを作成してイメージをキャッシュに追加する:
Alamofire.request(self.nameUrl[i]).responseImage { response in
if response.result.value != nil {
let image = UIImage(data: response.data!, scale: 1.0)!
imageCache.add(image, withIdentifier: self.nameUrl[i])
}
}
- キャッシュからイメージを取得する:
if let image = imageCache.image(withIdentifier: self.nameUrl[self.a])
{
self.localImageView.image = image
}
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow