CTCustomTableViewCell 2

CTCustomTableViewCell 2

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布上次发布2014年12月

未指明维护。



  • Stefan Kendall

CustomTableViewCell

针对自定义表格视图单元格的简单超类,它基于约定并消除了大量代码的需求。

创建自定义表格视图单元格

  1. 创建CTCustomTableViewCell的子类。
  2. 创建一个xib文件,其中包含一个单个UITableViewCell实例,将其ReuseIdentifer设置为类名。将其类设置为步骤1中创建的子类。
  3. 在您的UITableViewDataSource中,使用以下代码
    MyCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCustomCell"];

    if (cell == nil ) {
        cell = [MyCustomCell create];
    }

    //config 

    return cell;