博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tableViewCell cell 图片网络下载的 基本处理原理
阅读量:6806 次
发布时间:2019-06-26

本文共 4096 字,大约阅读时间需要 13 分钟。

hot3.png

#import "HMAppsViewController.h"

#import "HMApp.h"

HMAppsViewController ()

/**

 *  所有的应用数据

 */

@property (nonatomic, strong) NSMutableArray *apps;

/**

 *  存放所有下载操作的队列

 */

@property (nonatomic, strong) NSOperationQueue *queue;

/**

 *  存放所有的下载操作(urlkeyoperation对象是value

 */

@property (nonatomic, strong) NSMutableDictionary *operations;

/**

 *  存放所有下载完的图片

 */

@property (nonatomic, strong) NSMutableDictionary *images;

@end

@implementation HMAppsViewController

#pragma mark - 懒加载

- (NSMutableArray *)apps

{

    if (!_apps) {

        // 1.加载plist

        NSString *file = [[NSBundle mainBundle] pathForResource:@"apps" ofType:@"plist"];

        NSArray *dictArray = [NSArray arrayWithContentsOfFile:file];

        

        // 2.字典 --> 模型

        NSMutableArray *appArray = [NSMutableArray array];

        for (NSDictionary *dict in dictArray) {

            HMApp *app = [HMApp appWithDict:dict];

            [appArray addObject:app];

        }

        

        // 3.赋值

        self.apps = appArray;

//        _apps = appArray;

    }

    return _apps;

}

- (NSOperationQueue *)queue

{

    if (!_queue) {

        self.queue = [[NSOperationQueue alloc] init];

    }

    return _queue;

}

- (NSMutableDictionary *)operations

{

    if (!_operations) {

        self.operations = [[NSMutableDictionary alloc] init];

    }

    return _operations;

}

- (NSMutableDictionary *)images

{

    if (!_images) {

        self.images = [[NSMutableDictionary alloc] init];

    }

    return _images;

}

#pragma mark - 初始化方法

- (void)viewDidLoad

{

    [super viewDidLoad];

    

    // 这里仅仅是blockself进行了引用,selfblock没有任何引用

    [UIView animateWithDuration:2.0 animations:^{

        self.view.frame = CGRectMake(0, 0, 100, 100);

    }];

}

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    

    // 移除所有的下载操作缓存

    [self.queue cancelAllOperations];

    [self.operations removeAllObjects];

    // 移除所有的图片缓存

    [self.images removeAllObjects];

}

#pragma mark - Table view data source

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

    return self.apps.count;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    static NSString *ID = @"app";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    if (!cell) {

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];

    }

    

    // 取出模型

    HMApp *app = self.apps[indexPath.row];

    

    // 设置基本信息

    cell.textLabel.text = app.name;

    cell.detailTextLabel.text = app.download;

    

    // 先从images缓存中取出图片url对应的UIImage

    UIImage *image = self.images[app.icon];

    if (image) { // 说明图片已经下载成功过(成功缓存)

        cell.imageView.image = image;

    } else { // 说明图片并未下载成功过(并未缓存过)

        // 显示占位图片

        cell.imageView.image = [UIImage imageNamed:@"placeholder"];

        

        // 下载图片

        [self download:app.icon indexPath:indexPath];

    }

    

    return cell;

}

/**

 *  下载图片

 *

 *  @param imageUrl 图片的url

 */

- (void)download:(NSString *)imageUrl indexPath:(NSIndexPath *)indexPath

{

    // 取出当前图片url对应的下载操作(operation对象)

    NSBlockOperation *operation = self.operations[imageUrl];

    if (operation) return;

    

    // 创建操作,下载图片

    

//    HMAppsViewController * == typeof(self)

    

//    int age = 20;

//    typeof(age) age2 = 10; // int age2 = 10;

//    typeof(100) age3 = 30; // int age3 = 30;

    

    __weak typeof(self) appsVc = self;

    operation = [NSBlockOperation blockOperationWithBlock:^{

        NSURL *url = [NSURL URLWithString:imageUrl];

        NSData *data = [NSData dataWithContentsOfURL:url]; // 下载

        UIImage *image = [UIImage imageWithData:data]; // NSData -> UIImage

        

        // 回到主线程

        [[NSOperationQueue mainQueue] addOperationWithBlock:^{

            // 存放图片到字典中

            if (image) {

                appsVc.images[imageUrl] = image;

            }

            

            // 从字典中移除下载操作 (防止operations越来越大,保证下载失败后,能重新下载)

            [appsVc.operations removeObjectForKey:imageUrl];

            

            // 刷新表格

            [appsVc.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];

        }];

    }];

    

    // 添加操作到队列中

    [self.queue addOperation:operation];

    

    // 添加到字典中 (这句代码为了解决重复下载)

    self.operations[imageUrl] = operation;

}

/**

 *  1.会阻塞主线程 - 影响用户体验

 *  2.重复下载 - 浪费流量,浪费时间,影响用户体验

 *  // 保证:1张图片只下载1

 */

/**

 *  当用户开始拖拽表格时调用

 */

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView

{

    // 暂停下载

    [self.queue setSuspended:YES];

}

/**

 *  当用户停止拖拽表格时调用

 */

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate

{

    // 恢复下载

    [self.queue setSuspended:NO];

}

 

转载于:https://my.oschina.net/daniels/blog/538935

你可能感兴趣的文章
python函数是引用传递(对可变对象而言)
查看>>
Cisco ASA防火墙简易配置与调试手册
查看>>
Node.js搭建聊天室
查看>>
Rob Pike的5个编程原则
查看>>
Expression Blend实例中文教程(7) - 动画基础快速入门Animation
查看>>
《第一行代码》1day~了解全貌
查看>>
复习javaIO 之File类
查看>>
How to install snmpwalk snmpget on CentOS 6.4 6.3 5.9 Redhat RHEL Fedora
查看>>
最小生成树
查看>>
Mybatis中配置Mapper的方法
查看>>
Java基础学习总结(19)——Java环境变量配置
查看>>
Mvc5+Entity Framework6 之二----在MVC中用Entity Framework实现基本的CRUD
查看>>
我的友情链接
查看>>
大型网站技术架构(四)网站的高性能架构
查看>>
linux系统修改SSH最大连接数,修改nofile,nproc参数方法
查看>>
Hadoop-2.5.2集群安装配置详解
查看>>
解决报表网页版转成excel时,首位0被清除的问题
查看>>
Mysql学习总结(3)——MySql语句大全:创建、授权、查询、修改等
查看>>
MyBatis学习总结(8)——Mybatis3.x与Spring4.x整合
查看>>
Mysql学习总结(8)——MySql基本查询、连接查询、子查询、正则表达查询讲解...
查看>>