YYWebImage 是一个异步图片加载框架 (YYKit 组件之一).
其设计目的是试图替代 SDWebImage、PINRemoteImage、FLAnimatedImage 等开源框架,它支持这些开源框架的大部分功能,同时增加了大量新特性、并且有不小的性能提升。
它底层用 YYCache 实现了内存和磁盘缓存, 用 YYImage 实现了 WebP/APNG/GIF 动图的解码和播放。
你可以查看这些项目以获得更多信息。
特性
- 异步的图片加载,支持 HTTP 和本地文件。
- 支持 WebP、APNG、GIF 动画。
- 支持逐行扫描、隔行扫描、渐进式图像加载。
- UIImageView、UIButton、MKAnnotationView、CALayer 的 Category 方法支持。
- 常见图片处理:模糊、圆角、大小调整、裁切、旋转、色调等。
- 高性能的内存和磁盘缓存。
- 高性能的图片设置方式,以避免主线程阻塞。
- 每个类和方法都有完善的文档注释。
用法
从 URL 加载图片
1 |
<span style= "font-size: medium;" > |
2 |
imageView.yy_imageURL = [NSURL URLWithString:@ "http://github.com/logo.png" ]; |
5 |
imageView.yy_imageURL = [NSURL fileURLWithPath:@ "/tmp/logo.png" ];</span> |
加载动图
1 |
<span style= "font-size: medium;" > |
2 |
UIImageView *imageView = [YYAnimatedImageView new ]; |
3 |
imageView.yy_imageURL = [NSURL URLWithString:@ "http://github.com/ani.webp" ];</span> |
渐进式图片加载
1 |
<span style= "font-size: medium;" > |
2 |
[imageView yy_setImageWithURL:url options:YYWebImageOptionProgressive]; |
5 |
[imageView yy_setImageWithURL:url options:YYWebImageOptionProgressiveBlur | YYWebImageOptionSetImageWithFadeAnimation];</span> |
加载、处理图片
1 |
<span style= "font-size: medium;" > |
6 |
[imageView yy_setImageWithURL:url |
8 |
options:YYWebImageOptionSetImageWithFadeAnimation |
9 |
progress:^(NSInteger receivedSize, NSInteger expectedSize) { |
10 |
progress = ( float )receivedSize / expectedSize; |
12 |
transform:^UIImage *(UIImage *image, NSURL *url) { |
13 |
image = [image yy_imageByResizeToSize:CGSizeMake(100, 100) contentMode:UIViewContentModeCenter]; |
14 |
return [image yy_imageByRoundCornerRadius:10]; |
16 |
completion:^(UIImage *image, NSURL *url, YYWebImageFromType from, YYWebImageStage stage, NSError *error) { |
17 |
if (from == YYWebImageFromDiskCache) { |
18 |
NSLog(@ "load from disk cache" ); |
安装
Cocoapods
- 将 cocoapods 更新至最新版本.
- 在 Podfile 中添加pod "YYWebImage"。
- 执行pod install或pod update。
- 导入 <YYWebImage/YYWebImage.h>。
Carthage
- 在 Cartfile 中添加github "ibireme/YYWebImage"。
- 执行carthage update --platform ios并将生成的 framework 添加到你的工程。
- 导入 <YYWebImage/YYWebImage.h>。
- 注意: carthage framework 并没有包含 webp 组件。如果你需要支持 webp,可以用 Cocoapods 安装,或者手动安装。
手动安装
- 下载 YYWebImage 文件夹内的所有内容。
- 将 YYWebModel 内的源文件添加(拖放)到你的工程。
- 链接以下 frameworks:如果你需要支持 webp,可以将Vendor/WebP.framework(静态库) 加入你的工程。
- UIKit.framework
- CoreFoundation.framework
- QuartzCore.framework
- AssetsLibrary.framework
- ImageIO.framework
- Accelerate.framework
- MobileCoreServices.framework
- libsqlite3
- libz
- 导入YYWebImage.h。
项目描述:Asynchronous image loading framework. — 查看更多内容...