CTCustomTableViewCell 2× 测试已测试✗ 语言语言 Obj-CObjective C许可证 MIT 发布上次发布2014年12月由未指明维护。安装指南×CTCustomTableViewCell安装指南您想要向类似以下的Podfile中添加 pod 'CTCustomTableViewCell', '~> 2'target 'MyApp' do pod 'CTCustomTableViewCell', '~> 2' end然后在您的终端内部或从CocoaPods.app中运行 pod install为进行测试运行,可以运行以下命令pod try CTCustomTableViewCell查看PodspecGitHub库CocoaPods.org上的页面CTCustomTableViewCell 2由Stefan Kendallstefankendall/CustomTableViewCellGitHub库 CustomTableViewCell 针对自定义表格视图单元格的简单超类,它基于约定并消除了大量代码的需求。 创建自定义表格视图单元格 创建CTCustomTableViewCell的子类。 创建一个xib文件,其中包含一个单个UITableViewCell实例,将其ReuseIdentifer设置为类名。将其类设置为步骤1中创建的子类。 在您的UITableViewDataSource中,使用以下代码 MyCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCustomCell"]; if (cell == nil ) { cell = [MyCustomCell create]; } //config return cell;