SGImageCache CocoaPods 安装<a href="https://github.com/seatgeek/SGImageCache#get-an-image-urgently"></a>快速获取图片 介绍
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 }}