iPhone动态加载图片 实例讲解

移动开发 iOS
本文介绍的是iPhone动态加载图片 实例讲解,如何实现,我们先来看内容。

iPhone动态加载图片 实例讲解是本文介绍的内容。不多说了,先来看内容。官方的例子(支持3.x以上的机子)

http://developer.apple.com/library/ios/#samplecode/LazyTableImages/Introduction/Intro.html

其实在iphone上面是实现图片的动态加载,其实也不是很难,其中只要在代理中实现方法就可以,首先在头文件中声明使用到的代理:如 

  1. @interface XXX : UIViewController<UIScrollViewDelegate> 

然后在.m中实现

  1. //滚动停止的时候在去获取image的信息来显示在UITableViewCell上面  
  2. - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate  
  3. {  
  4.     if (!decelerate)  
  5. {  
  6.         [self loadImagesForOnscreenRows];  
  7.     }  
  8. }  
  9. - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView  
  10. {  
  11.     [self loadImagesForOnscreenRows];  
  12. }  
  13. //  
  14. - (void)loadImagesForOnscreenRows  
  15. {  
  16.     if ([self.entries count] > 0)  
  17.     {  
  18.         NSArray *visiblePaths = [self.tableView indexPathsForVisibleRows];  
  19.         for (NSIndexPath *indexPath in visiblePaths)  
  20.         {  
  21.             AppRecord *appRecord = [self.entries objectAtIndex:indexPath.row];  
  22.             if (!appRecord.appIcon) // avoid the app icon download if the app already has an icon  
  23.             {  
  24.                 [self startIconDownload:appRecord forIndexPath:indexPath];  
  25.             }  
  26.         }  
  27.     }  
  28. }  
  29. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath  
  30. {  
  31. ………//初始化UITableView的相关信息  
  32.      UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];  
  33.  
  34.     if (cell == nil)  
  35. {  
  36.         cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle  
  37.  
  38.   reuseIdentifier:CellIdentifier] autorelease];  
  39. cell.selectionStyle = UITableViewCellSelectionStyleNone;  
  40.     }  
  41. ……  
  42.      if (!appRecord.appIcon)//当UItableViewCell还没有图像信息的时候  
  43.         {  
  44.             if (self.tableView.dragging == NO && self.tableView.decelerating == NO)//table停止不再滑动的时候下载图片(先用默认的图片来代替Cell的image)  
  45.             {  
  46.                 [self startIconDownload:appRecord forIndexPath:indexPath];  
  47.             }  
  48.             cell.imageView.image = [UIImage imageNamed:@"Placeholder.png"];                  
  49.         }  
  50.         else//当appReacord已经有图片信息的时候直接显示  
  51.         {  
  52.    cell.imageView.image = appRecord.appIcon;  
  53.         }   

以上就是动态加载的主要的代码实现(其中不包括从网络上面下载图片信息等操作)

因为我们创建UITableviewCell的时候是以重用的方式来创建,所以就相当于说***屏显示的cell就是以后显示数据和图片的基础,因为后面数据超出一平的时候,我们只是改变数据的显示,并没有为每一个cell的数据元创建相应的一个

UITableViewCell(这样非常的浪费内存),要是我们没有实现

  1. (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView  
  2. 和  
  3. (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate 

代理的时候,当我们滚动UITableView的时候TableView 就是按照顺序来加载图片的信息资源,这样当我们用力滚动Table的时候就感觉相当的卡,(其实UITableView实在一个个的显示出cell的信息)

当我们实现了以上代理的话,就可以实现在tableView滚动停止的时候,在去加载数据信息,这样滚动期间的tableViewCell就可以用默认的图片信息来显示了。

iPhone动态加载图片 实例讲解

小结:iPhone动态加载图片 实例讲解的内容介绍完了,希望本文对你有所帮助!

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

2011-07-25 15:32:06

iPhone Table 动态

2011-07-21 17:35:11

iPhone Table 图片

2011-08-22 13:46:15

iPhone开发GameKit 蓝牙

2009-09-15 09:45:23

Linq动态条件

2011-07-27 17:07:06

iPhone 游戏 Cocos2d

2015-08-25 10:28:38

前端图片延迟加载

2011-07-21 17:29:42

iPhone Sqlite 数据库

2011-07-26 13:23:14

iPhone 图片 相册

2011-07-25 18:02:51

iPhone LibFetion 移植

2010-09-14 17:20:57

2011-04-02 16:37:26

PAT

2010-06-03 18:22:38

Hadoop

2011-07-27 17:45:29

iPhone 模拟器 图片

2011-08-08 16:56:44

iPhone 字符处理 视图

2010-11-22 16:22:39

MySQL连接查询

2011-05-23 13:24:01

2010-03-03 14:05:36

Python实例应用

2009-08-28 16:37:32

C# for循环

2011-04-01 09:04:09

RIP

2011-04-02 16:33:33

点赞
收藏

51CTO技术栈公众号