加载网络图片可以说是网络应用中必备的。如果单纯的去下载图片,而不去做多线程、缓存等技术去优化,加载图片时的效果与用户体验就会很差。

一、自己实现加载图片的方法

tips:

*iOS中所有网络访问都是异步的.(自己开线程去下载) *普通为模型增加UIImage属性的方法做的是内存缓存(下次启动还需要从网络重新加载), 而要做本地缓存的话,还要自己手动存储网络上下载的图片. *为了加快访问, 还需要自己去弄缓存.(内存缓存或者本地缓存) *当图片没有下载完成时,还要设置占位图片。

以下代码用NSOperation开异步线程下载图片,当下载完成时替换占位图片。

01.//
02.//  XNViewController.m
03.//  加载网络图片, 普通的用NSOperation来做.
04.//
05.//  Created by neng on 14-7-7.
06.//  Copyright (c) 2014年 neng. All rights reserved.
07.//
08. 
09.#import "XNViewController.h"
10.#import "XNApp.h"
11. 
12.@interface XNViewController ()
13.@property (nonatomic, strong) NSArray *appList;
14.@property (nonatomic, strong) NSOperationQueue *queue;
15.@end
16. 
17.@implementation XNViewController
18.#pragma mark - 懒加载
19. 
20.- (NSOperationQueue *)queue {
21.if (!_queue) _queue = [[NSOperationQueue alloc] init];
22.return _queue;
23.}
24. 
25.//可抽取出来写到模型中
26.- (NSArray *)appList {
27.if (!_appList) {
28.//1.加载plist到数组中
29.NSURL *url = [[NSBundle mainBundle] URLForResource:@"apps.plist" withExtension:nil];
30.NSArray *array = [NSArray arrayWithContentsOfURL:url];
31.//2.遍历数组
32.NSMutableArray *arrayM = [NSMutableArray array];
33.[array enumerateObjectsUsingBlock: ^(id obj, NSUInteger idx, BOOL *stop) {
34.[arrayM addObject:[XNApp appWithDict:obj]];  //数组中存放的是字典, 转换为app对象后再添加到数组
35.}];
36._appList = [arrayM copy];
37.}
38.return _appList;
39.}
40. 
41.- (void)viewDidLoad {
42.[super viewDidLoad];
43. 
44.self.tableView.rowHeight = 88;
45. 
46.//    NSLog(@"appList-%@",_appList);
47.}
48. 
49.#pragma mark - 数据源方法
50.- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
51.return self.appList.count;
52.}
53. 
54.- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
55.static NSString *ID = @"Cell";
56.UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
57. 
58.//用模型来填充每个cell
59.XNApp *app = self.appList[indexPath.row];
60.cell.textLabel.text = app.name;  //设置文字
61. 
62.//设置图像: 模型中图像为nil时用默认图像,并下载图像. 否则用模型中的内存缓存图像.
63.if (!app.image) {
64.cell.imageView.image = [UIImage imageNamed:@"user_default"];
65. 
66.[self downloadImg:indexPath];
67.}
68.else {
69.//直接用模型中的内存缓存
70.cell.imageView.image = app.image;
71.}
72.//  NSLog(@"cell--%p", cell);
73. 
74.return cell;
75.}
76. 
77./**始终记住, 通过模型来修改显示. 而不要试图直接修改显示*/
78.- (void)downloadImg:(NSIndexPath *)indexPath {
79.XNApp *app  = self.appList[indexPath.row]; //取得改行对应的模型
80. 
81.[self.queue addOperationWithBlock: ^{
82.NSData *imgData = [NSData dataWithContentsOfURL:[NSURL URLWithString:app.icon]]; //得到图像数据
83.UIImage *image = [UIImage imageWithData:imgData];
84. 
85.//在主线程中更新UI
86.[[NSOperationQueue mainQueue] addOperationWithBlock: ^{
87.//通过修改模型, 来修改数据
88.app.image = image;
89.//刷新指定表格行
90.[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
91.}];
92.}];
93.}
94. 
95.@end

上述代码只是做了内存缓存,而每次重新进入应用时,还会从网上重新下载。如果要继续优化上面的代码,需要自己去实现本地缓存。

二、使用第三方框架SDWebImage。(非常优秀)

*特点 :依赖的库很少.功能全面。 *自动实现磁盘缓存: *缓存图片名字是以MD5进行加密的后的名字进行命名.(因为加密那堆字串是唯一的) *[imageViewsd_setImageWithURL:v.fullImageURL placeholderImage:[UIImage imageNamed:@”xxxxx”]]. *就一个方法就实现了多线程带缓冲等效果.(可用带参数的方法,具体可看头文件)
用SDWebImage修改上面的方法后的代码可简化为:

01.#pragma mark - 数据源方法
02.- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
03.return self.appList.count;
04.}
05. 
06.- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
07.static NSString *ID = @"Cell";
08.UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
09. 
10.//用模型来填充每个cell
11.XNApp *app = self.appList[indexPath.row];
12.cell.textLabel.text = app.name;  //设置文字
13. 
14.//  //设置图像: 模型中图像为nil时用默认图像,并下载图像. 否则用模型中的内存缓存图像.
15.//  if (!cell.imageView.image) {
16.//      cell.imageView.image = [UIImage imageNamed:@"user_default"];
17.//
18.//      [self downloadImg:indexPath];
19.//  }
20.//  else {
21.//      //直接用模型中的内存缓存
22.//      cell.imageView.image = app.image;
23.//  }
24. 
25. 
26.//使用SDWebImage来完成上面的功能. 针对ImageView.
27.//一句话, 自动实现了异步下载. 图片本地缓存. 网络下载. 自动设置占位符.
28.[cell.imageView sd_setImageWithURL:[NSURL URLWithString:app.icon] placeholderImage:[UIImage imageNamed:@"user_default"]];
29. 
30. 
31.return cell;
32.}
33. 
34./**始终记住, 通过模型来修改显示. 而不要试图直接修改显示*/
35.//- (void)downloadImg:(NSIndexPath *)indexPath {
36.//  XNApp *app  = self.appList[indexPath.row]; //取得改行对应的模型
37.//
38.//  [self.queue addOperationWithBlock: ^{
39.//      NSData *imgData = [NSData dataWithContentsOfURL:[NSURL URLWithString:app.icon]]; //得到图像数据
40.//      UIImage *image = [UIImage imageWithData:imgData];
41.//
42.//      //在主线程中更新UI
43.//      [[NSOperationQueue mainQueue] addOperationWithBlock: ^{
44.//          //通过修改模型, 来修改数据
45.//          app.image = image;
46.//          //刷新指定表格行
47.//          [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
48.//      }];
49.//  }];
50.//}
51. 
52.@end

SDWebImage中的一些参数: *SDWebImageRetryFailed = 1<< 0, 默认选项,失败后重试 *SDWebImageLowPriority = 1<< 1, 使用低优先级 *SDWebImageCacheMemoryOnly = 1<< 2, 仅仅使用内存缓存 *SDWebImageProgressiveDownload = 1<< 3, 显示现在进度 *SDWebImageRefreshCached = 1<< 4, 刷新缓存 *SDWebImageContinueInBackground =1 << 5, 后台继续下载图像 *SDWebImageHandleCookies = 1<< 6, 处理Cookie *SDWebImageAllowInvalidSSLCertificates= 1 << 7, 允许无效的SSL验证 *SDWebImageHighPriority = 1<< 8, 高优先级 *SDWebImageDelayPlaceholder = 1<< 9 延迟显示占位图片

出处:http://blog.csdn.net/xn4545945

iOS网络加载图片缓存与SDWebImage的更多相关文章

  1. iOS网络加载图片缓存策略之ASIDownloadCache缓存优化

    iOS网络加载图片缓存策略之ASIDownloadCache缓存优化   在我们实际工程中,很多情况需要从网络上加载图片,然后将图片在imageview中显示出来,但每次都要从网络上请求,会严重影响用 ...

  2. LruCache:从网络加载图片缓存实例

    OOM异常 堆内存用于存储实例对象,当程序不断创建对象,并且对象都有引用指向,那么垃圾回收机制就不会清理这些对象,当对象多到挤满堆内存的上限后,就产生OOM异常.Android系统为每个应用程序使用的 ...

  3. 【转】Android循环滚动广告条的完美实现,封装方便,平滑过渡,从网络加载图片,点击广告进入对应网址

    Android循环滚动广告条的完美实现,封装方便,平滑过渡,从网络加载图片,点击广告进入对应网址 关注finddreams,一起分享,一起进步: http://blog.csdn.net/finddr ...

  4. swift 基础小结01 --delegate、Optional、GCD的使用、request请求、网络加载图片并保存到沙箱、闭包以及桥接

    本文主要记录swift中delegate的使用.“?!”Optional的概念.GCD的使用.request请求.网络加载图片并保存到沙箱.闭包以及桥接. 一.delegate的使用 swift中de ...

  5. android 网络加载图片,对图片资源进行优化,并且实现内存双缓存 + 磁盘缓存

    经常会用到 网络文件 比如查看大图片数据 资源优化的问题,当然用开源的项目  Android-Universal-Image-Loader  或者 ignition 都是个很好的选择. 在这里把原来 ...

  6. ios -网络加载json和本地加载json

    1网络加载json的时候,要在模型的实现文件里写: - (void)setValue:(id)value forKey:(NSString *)key { } 2本地加载json的时候,要在模型的实现 ...

  7. Glide加载图片缓存库出现——You cannot start a load for a destroyed activity

    请记住一句话:不要再非主线程里面使用Glide加载图片,如果真的使用了,请把context参数换成getApplicationContext.

  8. 关于ios异步加载图片的几个开源项目

    一.HjCache  原文:http://www.markj.net/hjcache-iphone-image-cache/ 获取 HJCache: HJCache is up on github h ...

  9. 使用自定义的item、Adapter和AsyncTask、第三方开源框架PullToRefresh联合使用实现自定义的下拉列表(从网络加载图片显示在item中的ImageView)

    AsyncTask使用方法详情:http://www.cnblogs.com/zzw1994/p/4959949.html 下拉开源框架PullToRefresh使用方法和下载详情:http://ww ...

随机推荐

  1. egg.js路由的优雅改造

    引言 在使用express,koa, 或者是egg.js进行node server开发的过程中,我们的路由基本上都是定义在controller层的,框架对于 node 原生路由都会进行一层封装,一版都 ...

  2. Service Fabric Cluster Manager

    作者:潘罡 (Van Pan)@ Microsoft 我们回到Service Fabric最底层的话题,谈谈Service Fabric是怎么工作的. 首先,我们回到下面的文档,看看Service F ...

  3. Hadoop生态圈-hbase介绍-伪分布式安装

    Hadoop生态圈-hbase介绍-伪分布式安装 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.HBase简介 HBase是一个分布式的,持久的,强一致性的存储系统,具有近似最 ...

  4. Java基础-Collection子接口之List接口

    Java基础-Collection子接口之List接口 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 我们掌握了Collection接口的使用后,再来看看Collection接口中 ...

  5. bzoj千题计划137:bzoj [CQOI2014]危桥

    http://www.lydsy.com/JudgeOnline/problem.php?id=3504 往返n遍,即单向2*n遍 危桥流量为2,普通桥流量为inf 原图跑一遍最大流 交换b1,b2再 ...

  6. Java并发编程原理与实战三十二:ForkJoin框架详解

    1.Fork/Join框架有什么用呢? ------->Fork使用来切分任务,Join是用来汇总结果.举个简单的栗子:任务是1+2+3+...+100这个任务(当然这个任务的结果有好的算法去做 ...

  7. 【Swift】UIAlertController使用

    func clickButton1(){ 创建uialertcontroller var alertCtl : UIAlertController = UIAlertController(title: ...

  8. asp启用父路径

    开启父路径后可以用../来表示上一层目录,如果网站程序中使用了../,不开启则网站程序里有../就会报错. IIS6启用父路径方法:打开IIS管理器——网站——右键属性——主目录——配置——选项——选 ...

  9. 浅谈iOS与社交化网络

    CHENYILONG Blog 社交化网络 技术博客http://www.cnblogs.com/ChenYilong/ 新浪微博http://weibo.com/luohanchenyilong  ...

  10. STL-set and multiset

    ! ! ! ! set 中的元素总是保持单调递增. set<int> a; set的插入 set没有尾部插入函数push_back(),元素的插入一般使用insert进行动态检索插入. a ...