码迷,mamicode.com
首页 > 移动开发 > 详细

学习IOS开发UI篇--UITableView/数据模型嵌套/UITableViewCell/Cell的重用

时间:2014-05-30 13:14:07      阅读:372      评论:0      收藏:0      [点我收藏+]

标签:c   style   a   int   width   strong   

1.UITableView

==================================================

UITableView有两种格式:group和plain

2.UITableView如何展示数据

==================================================

UITableView需要一个数据源(dataSource)来显示数据
凡是遵守UITableViewDataSource协议的OC对象,都可以是UITableView的数据源

// 一共有多少组数据

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;

// 每一组有多少行数据

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

// 每一行显示什么内容

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

3.模型嵌套

==================================================

模型嵌套模型:数组中字典包含的数组里还有字典

需要设置两个模型在外层的模型中将内层的模型包装

4.UITableViewCell

==================================================

介绍

UITableView的每一行都是一个UITableViewCell,通过dataSource的tableView:cellForRowAtIndexPath:方法来初始化每一行
UITableViewCell内部有个默认的子视图:contentView,contentView是UITableViewCell所显示内容的父视图,可显示一些辅助指示视图
辅助指示视图的作用是显示一个表示动作的图标,可以通过设置UITableViewCell的accessoryType来显示,默认是UITableViewCellAccessoryNone(不显示辅助指示视图)
bubuko.com,布布扣
 
5.Cell的重用原理
==================================================
      重用原理:当滚动列表时,部分UITableViewCell会移出窗口,UITableView会将窗口外的UITableViewCell放入一个对象池中,等待重用。当UITableView要求dataSource返回UITableViewCell时,dataSource会先查看这个对象池,如果池中有未使用的UITableViewCell,dataSource会用新的数据配置这个UITableViewCell,然后返回给UITableView,重新显示到窗口中,从而避免创建新对象
区分对象池中UITableViewCell的对象
      UITableViewCell有个NSString *reuseIdentifier属性,可以在初始化UITableViewCell的时候传入一个特定的字符串标识来设置reuseIdentifier(一般用UITableViewCell的类名)。当UITableView要求dataSource返回UITableViewCell时,先通过一个字符串标识到对象池中查找对应类型的UITableViewCell对象,如果有,就重用,如果没有,就传入这个字符串标识来初始化一个UITableViewCell对象

  代码如下:

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

{

    // 1.定义一个cell的标识

      static NSString *ID = @”njcell";

   

    // 2.从缓存池中取出cell

      UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

   

    // 3.如果缓存池中没有cell

      if (cell == nil) {

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

    }

   

    // 4.设置cell的属性...

   

      return cell;

学习IOS开发UI篇--UITableView/数据模型嵌套/UITableViewCell/Cell的重用,布布扣,bubuko.com

学习IOS开发UI篇--UITableView/数据模型嵌套/UITableViewCell/Cell的重用

标签:c   style   a   int   width   strong   

原文地址:http://www.cnblogs.com/zhaoyan/p/3756222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!