iOS 轻量级图片缓存:SGImageCache

jopen 10年前

SGImageCache 是一款灵活的图片缓存库,提供给图片丰富的 iOS 应用。SGImageCache 是轻量级的,基于队列管理构建的。

CocoaPods 安装

pod 'SGImageCache'

快速获取图片

// Objective-C[SGImageCache getImageForURL:url thenDo:^(UIImage *image) {      if (image) {          self.imageView.image = image;      }}];
// SwiftSGImageCache.getImageForURL(url) { image in      if image {          self.imageView.image = image      }}

项目主页:http://www.open-open.com/lib/view/home/1406602946265