美文网首页iOS DeveloperiOS 开发
关情纸尾---UIKit基础-UITableView

关情纸尾---UIKit基础-UITableView

作者: 关情纸尾 | 来源:发表于2016-04-22 22:54 被阅读48次

    一、基本介绍

    在iOS中,要实现表格数据展示,最常用的做法就是使用UITableView
    UITableView继承自UIScrollView,因此支持垂直滚动,⽽且性能极佳 。
    UITableView有两种风格:
    UITableViewStylePlain
    UITableViewStyleGrouped。
    这两者操作起来其实并没有本质区别,
    只是后者按分组样式显示,前者按照普通样式显示而已。先看一下两者的应用:
    

    二、UItableview展示数据的过程

    ♥ UITableView需要一个数据源(dataSource)来显示数据
    ♥ UITableView会向数据源查询一共有多少行数据以及每⼀行显示什么数据等
    ♥ 没有设置数据源的UITableView只是个空壳
    ♥ 凡是遵守UITableViewDataSource协议的OC对象,都可以是UITableView的数据源 
    ♥ 展示数据的过程:
    (1)调用数据源的下面⽅法得知一共有多少组数据
      - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
    (2)调用数据源的下面⽅法得知每一组有多少行数据  
      - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
    (3)调⽤数据源的下⾯⽅法得知每⼀⾏显示什么内容
      - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
    注意:UItableview在默认情况下是 UITableViewStylePlain,可以在右侧设置style
    

    三、自带的UITableViewCell

    3.1、UITableViewCell的结构
    3.2、cell的重复使用原理
    iOS设备的内存有限,如果用UITableView显示成千上万条数据,
    就需要成千上万个UITableViewCell对象的话,那将会耗尽iOS设备的内存。
    要解决该问题,需要重用UITableViewCell对象
    ♥ 重用原理:当滚动列表时,部分UITableViewCell会移出窗口,
    UITableView会将窗口外的UITableViewCell放入一个对象池中,等待重用。
    当UITableView要求dataSource返回UITableViewCell时,dataSource会先查看这个对象池,
    如果池中有未使用的UITableViewCell,dataSource会用新的数据配置这个UITableViewCell,
    然后返回给UITableView,重新显示到窗口中,从而避免创建新对象
     
    还有一个非常重要的问题:有时候需要自定义UITableViewCell(用一个子类继承UITableViewCell)
    而且每一行用的不一定是同一种UITableViewCell,
    所以一个UITableView可能拥有不同类型的UITableViewCell,
    对象池中也会有很多不同类型的UITableViewCell,
    那么UITableView在重用UITableViewCell时可能会得到错误类型的UITableViewCell
    
    解决方案:UITableViewCell有个NSString *reuseIdentifier属性,
    可以在初始化UITableViewCell的时候传入一个特定的字符串标识
    来设置reuseIdentifier(一般用UITableViewCell的类名)。
    
    当UITableView要求dataSource返回UITableViewCell时,
    先通过一个字符串标识到对象池中查找对应类型的UITableViewCell对象,
    如果有,就重用,如果没有,就传入这个字符串标识来初始化一个UITableViewCell对象
    

    四、cell的重用代码

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(
    NSIndexPath *)indexPath
    {
        // 1.定义一个cell的标识
        static NSString *ID = @"Gqcell";
        // 2.从缓存池中取出cell
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
        // 3.如果缓存池中没有cell
        if(cell == nil) {
            //创建Cell
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
        }
        // 4.设置cell的属性...     
          return
         cell;
    }}
    

    相关文章

      网友评论

        本文标题:关情纸尾---UIKit基础-UITableView

        本文链接:https://www.haomeiwen.com/subject/rwpxrttx.html