ios第三方开源框架学习——SDWebImage的使用

学习ios的时候,涉及到图片缓存,看了好多博客,最终选择了SDWebImage来处理,既可以处理大量图片同时又很方便。按照下面的步骤来,图片缓存很容易搞定。
使用步骤:
1、下载SDWebImage,导入工程。

GitHub地址:https://github.com/rs/SDWebImage。打开网页点击 Clone or download

2、在需要的类文件中导入
#import“UIImageView+WebCache.h”

3、调用sd_setImageURL方法,代码如下:
[image sd_setImageWithURL:imagePath];

SDWebImage框架中涉及到图片缓存的一共有4种方法
//最普通的图片缓存
(void)sd_setImageWithURL:(nullable NSURL *)url

//使用默认图片,如果图片加载完之后显示图片未加载完显示默认图片
(void)sd_setImageWithURL:(nullable NSURL *)url placeholderImage:(nullable UIImage *)placeholder

//使用block可以在图片加载完之后做一些事情
(void)sd_setImageWithURL:(nullable NSURL *)url completed:(nullable SDExternalCompletionBlock)completeBlock

//使用默认图片,再用block完成以后做一些事情
(void)sd_setImageWithURL:(nulllable NSURL *)url placeholderImage:(nullable UIImage *)placeholder completed:(nullable SDExternalCompletionBlock)completeBlock

你可能感兴趣的:(ios)