详解TableView中图片延时加载

移动开发 iOS
一次性从服务器上取来所有图片对用户来浪费流量,对服务器也是负担,最好是按需加载,即当该用户要浏览该条目时再去加载经常我们会用tableView显示很多条目。

TableView图片延时加载是本文要介绍的内容,经常我们会用tableView显示很多条目,有时候需要显示图片。但是一次性从服务器上取来所有图片对用户来浪费流量,对服务器也是负担,最好是按需加载,即当该用户要浏览该条目时再去加载经常我们会用tableView显示很多条目。

有时候需要显示图片, 但是一次从服务器上取来所有图片对用户来浪费流量,,对服务器也是负担.最好是按需加载,即当该用户要浏览该条目时再去加载它的图片。

重写如下方法

  1. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath  
  2. {  
  3.     UIImage *image = [self getImageForCellAtIndexPath:indexPath];  //从网上取得图片  
  4.     [cell.imageView setImage:image];  

这虽然解决了延时加载的问题, 但当网速很慢, 或者图片很大时(假设,虽然一般cell中的图很小),你会发现程序可能会失去对用户的响应.

原因是

  1. UIImage *image = [self getImageForCellAtIndexPath:indexPath]; 

 这个方法可能要花费大量的时间,主线程要处理这个method,所以失去了对用户的响应.

所以要将该方法提出来:

  1. - (void)updateImageForCellAtIndexPath:(NSIndexPath *)indexPath  
  2. {  
  3.     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];  
  4.     UIImage *image = [self getImageForCellAtIndexPath:indexPath];  
  5.     UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];  
  6.     [cell.imageView performSelectorOnMainThread:@selector(setImage:) withObject:image waitUntilDone:NO];  
  7.     [pool release];  

然后再新开一个线程去做这件事情

  1. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath  
  2. {  
  3.     [NSThread detachNewThreadSelector:@selector(updateImageForCellAtIndexPath:) toTarget:self withObject:indexPath];  

同理当我们需要长时间的计算时,也要新开一个线程 去做这个计算以避免程序处于假死状态

以上代码只是示例, 还可以改进的更多, 比如从网上down下来一次后就将图片缓存起来,再次显示的时候就不用去下载。

小结:详解TableView图片延时加载的内容介绍完了,希望通过本文的学习能对你有所帮助!

责任编辑:zhaolei 来源: 互联网
相关推荐

2011-08-18 17:20:21

IOS开发TableView图片

2011-08-12 14:58:43

iPhoneTableview数据

2009-07-02 09:38:17

Hibernate延时

2022-01-04 16:50:47

JavaScript图片网站

2011-07-25 15:32:06

iPhone Table 动态

2021-04-20 08:49:38

AndroidKotlinColi

2011-08-08 15:48:13

iPhone TableView 背景

2015-06-11 10:12:26

Android图片加载缓存

2011-03-17 10:37:07

JavaScript

2011-07-22 13:30:52

JavaScript

2015-08-25 10:28:38

前端图片延迟加载

2017-11-08 14:34:20

图片fresco程序员

2014-10-13 10:44:43

PCB布线

2021-07-05 06:51:43

Java机制类加载器

2011-06-24 16:41:14

QT OpenCV 框架

2011-07-06 16:15:46

iPhone 图片

2013-06-27 11:16:27

Android异步加载

2009-07-28 13:39:44

加载ViewStateASP.NET

2012-06-05 10:22:45

jQuery

2020-11-18 09:30:29

图片懒加载前端浏览器
点赞
收藏

51CTO技术栈公众号