SDWebImage图片缓冲延迟加载
这个有点太容易了。原理也很简单,就是对UIImageView进行了category拓展方法。
基本操作:
1,引入SDWebImage库
2,#import <UIImageView+WebCache.h>
3,[imgView sd_setImageWithURL:[NSURL URLWithString:@"http://earea.stcyclub.com/Static/Uploads/img/big_1408071001.jpg"]];
完了,太简单了。还集成了很多方法,比如说设置placeholderImage。