美文网首页
TableView的使用

TableView的使用

作者: iOS攻城狮_Runloop | 来源:发表于2018-11-02 16:57 被阅读0次

    1.tableView性能优化 - cell的循环利用方式1

     *  什么时候调用:每当有一个cell进入视野范围内就会调用
     */
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        // 0.重用标识
        // 被static修饰的局部变量:只会初始化一次,在整个程序运行过程中,只有一份内存
        static NSString *ID = @"cell";
    
    ###tableView性能优化 - cell的循环利用方式1  
      // 1.先根据cell的标识去缓存池中查找可循环利用的cell
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    
        // 2.如果cell为nil(缓存池找不到对应的cell)
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
        }
    
        // 3.覆盖数据
        cell.textLabel.text = [NSString stringWithFormat:@"testdata - %zd", indexPath.row];
    
        return cell;
    }
    
    

    2.tableView性能优化 - cell的循环利用方式2

    定义一个全局变量
    // 定义重用标识
    NSString *ID = @"cell";
    注册某个标识对应的细胞类型
    // 在这个方法中注册cell
    - (void)viewDidLoad {
        [super viewDidLoad];
    
        // 注册某个标识对应的cell类型
        [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:ID];
    }
    在数据源方法中返回细胞
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        // 1.去缓存池中查找cell
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    
        // 2.覆盖数据
        cell.textLabel.text = [NSString stringWithFormat:@"testdata - %zd", indexPath.row];
    
        return cell;
    }
    

    3.tableView性能优化 - cell的循环利用方式3

    image.png
    image.png
    • 在代码中利用重用标识获取细胞
    // 0.重用标识
    // 被static修饰的局部变量:只会初始化一次,在整个程序运行过程中,只有一份内存
    static NSString *ID = @"cell";
    
    // 1.先根据cell的标识去缓存池中查找可循环利用的cell
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    
    // 2.覆盖数据
    cell.textLabel.text = [NSString stringWithFormat:@"cell - %zd", indexPath.row];
    
    return cell;
    
    

    4.UITableView中的常见设置

    // 分割线颜色
    self.tableView.separatorColor = [UIColor redColor];
    
    // 隐藏分割线
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    
    // tableView有数据的时候才需要分割线
    // 开发小技巧:快速取消分割线
     self.tableView.tableFooterView = [[UIView alloc] init];
    

    5.UITableViewCell中的常见设置

    // 取消选中的样式(常用) 让当前 cell 按下无反应
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    
    // 设置选中的背景色
    UIView *selectedBackgroundView = [[UIView alloc] init];
    selectedBackgroundView.backgroundColor = [UIColor redColor];
    cell.selectedBackgroundView = selectedBackgroundView;
    
    // 设置默认的背景色
    cell.backgroundColor = [UIColor blueColor];
    
    // 设置默认的背景色
    UIView *backgroundView = [[UIView alloc] init];
    backgroundView.backgroundColor = [UIColor greenColor];
    cell.backgroundView = backgroundView;
    
    // backgroundView的优先级 > backgroundColor
    // 设置指示器
    //    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    cell.accessoryView = [[UISwitch alloc] init];
    

    自定义单元格

    storyboard自定义cell

    image.png image.png

    xib自定义cell

    `
    1.创建一个继承自的UITableViewCell的子类,比如XMGDealCell
    2.创建一个XIB文件(文件名建议跟细胞的类名一样),比如XMGDealCell.xib
    拖拽一个的UITableViewCell出来
    修改细胞的类为XMGDealCell
    设置单元的重用标识
    往细胞中添加需要用到的子控件
    3.在控制器中
    利用registerNib ...方法注册厦门国际银行文件
    利用重用标识找到小区(如果没有注册XIB文件,就需要手动去加载XIB文件)
    给细胞传递模型数据
    4.在XMGDealCell中
    厦门国际银行将中的子控件连线到类扩展中
    需要提供一个模型属性,重写模型的一套方法,在这个方法中设置模型数据到子控件上
    也可以将创建获得细胞的代码封装起来(比如cellWithTableView:方法)

    `

    代码自定义cell(使用frame)

    1.创建一个继承自的UITableViewCell的子类,比如XMGDealCell 在initWithStyle:reuseIdentifier:方法中 添加子控件 设置子控件的初始化属性(比如文字颜色,字体) 在layoutSubviews方法中设置子控件的帧 需要提供一个模型属性,重写模型的一套方法,在这个方法中设置模型数据到子控件 2.在控制器中 利用的registerClass ...方法注册XMGDealCell类 利用重用标识找到小区(如果没有注册类,就需要手动创建单元) 给细胞传递模型数据 也可以将创建获得细胞的代码封装起来(比如cellWithTableView:方法)

    代码自定义cell(使用autolayout)

    1.创建一个继承自的UITableViewCell的子类,比如XMGDealCell 在initWithStyle:reuseIdentifier:方法中 添加子控件 添加子控件的约束(建议使用Masonry) 设置子控件的初始化属性(比如文字颜色,字体) 需要提供一个模型属性,重写模型的一套方法,在这个方法中设置模型数据到子控件 2.在控制器中 利用的registerClass ...方法注册XMGDealCell类 利用重用标识找到小区(如果没有注册类,就需要手动创建单元) 给细胞传递模型数据 也可以将创建获得细胞的代码封装起来(比如cellWithTableView:方法)
    欢迎下载使用 视频剪辑神器,苹果应用商店下载地址:视频剪辑神器

    相关文章

      网友评论

          本文标题:TableView的使用

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