美文网首页码农的世界程序员iOS程序猿
iOS 纯代码编写“自定义等高tableViewCell”

iOS 纯代码编写“自定义等高tableViewCell”

作者: 齐舞647 | 来源:发表于2017-09-24 19:42 被阅读108次
    一、新建一个继承自UITableViewCell的子类,比如BQTgCell
    @interface BQTgCell : UITableViewCell
    @end
    
    二、在BQTgCell.m文件中
    • 重写-initWithStyle:reuseIdentifier:方法
      • 在这个方法中添加所有的子控件
      • 给子控件做一些初始化设置(设置字体、文字颜色等)
    /**
     *  在这个方法中添加所有的子控件
     */
    - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
    {
        if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
            // ......
        }
        return self;
    }
    
    • 重写-layoutSubviews方法
      • 一定要调用[super layoutSubviews]
      • 在这个方法中计算和设置所有子控件的frame
    /**
     *  在这个方法中计算所有子控件的frame
     */
    - (void)layoutSubviews
    {
        [super layoutSubviews];
    
        // ......
    }
    
    三、在BQTgCell.h文件中提供一个模型属性,比如BQTg模型
    @class BQTg;
    
    @interface BQTgCell : UITableViewCell
    /** 团购模型数据 */
    @property (nonatomic, strong) BQTg *tg;
    @end
    
    四、在BQTgCell.m中重写模型属性的set方法
    • 在set方法中给子控件设置模型数据
    - (void)setTg:(BQTg *)tg
    {
        _tg = tg;
    
        // .......
    }
    
    五、在控制器中
    • 注册cell的类型
    [self.tableView registerClass:[BQTgCell class] forCellReuseIdentifier:ID];
    
    • 给cell传递模型数据
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        // 访问缓存池
        BQTgCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    
        // 设置数据(传递模型数据)
        cell.tg = self.tgs[indexPath.row];
    
        return cell;
    }
    

    效果图:


    效果图

    实例代码:BQTableViewCell-1
    https://github.com/MrLiu-647/BQTableViewCell-1

    相关文章

      网友评论

        本文标题:iOS 纯代码编写“自定义等高tableViewCell”

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