iPhone网络图片下载之ABELWebImage
ABELWebImage库提供了一个ABELImageView支持加载来自网络的远程图片,ABELImageView是继承于UIImageView的。ABELWebImage具有缓存管理、异步下载、节约图片下载流量、支持gif动态图片下载、支持ARC、MRC环境、使用简单等优点。
使用例子:
[html][/html] view plaincopy
- ABELImageView * imageView = [[ABELImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 200)];
- [imageView setImageWithURL:[NSURL URLWithString:@”http://cms.csdnimg.cn/article/201309/26/5243fc3b7161d.jpg”]];
- [self.window addSubview:imageView];
点击下载:ABELWebImage