1.SDWebImage下載圖片
swift中,下載玩圖片后,不會將圖片緩存到沙盒,需要手動調(diào)用SDImageCache.shared.store保存到沙盒
SDWebImageDownloader.shared.downloadImage(with: url, options: SDWebImageDownloaderOptions.highPriority, context: nil, progress: nil) { (image, data, _, _) in
SDImageCache.shared.store(image, forKey: url.absoluteString, completion: {
print("圖片保存成功")
print(image as Any)
print(data as Any)
})
}