1:配置好cell并且选择其自定义类
2:设置好cell的重用标识
3:cell的创建
+ (instancetype)cellWithTableView:(UITableView *)tableView{
static NSString *ID = @"JQList";
//1.判断是否存在可重用cell
JQListCell * cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (!cell)
{
//2.为nib文件注册并指定可重用标识
[tableView registerNib:[UINib nibWithNibName:@"JQListCell" bundle:nil] forCellReuseIdentifier:ID];
//3.重新获取cell
cell = [tableView dequeueReusableCellWithIdentifier:ID];
}
//不要选中状态
cell.selectionStyle=UITableViewCellSelectionStyleNone;
//4.返回cell
return cell;
}
如果需要动态的调整cell的内容,那么需要在xib中关闭cell的自动布局
4:实现
- (void)awakeFromNib {
[super awakeFromNib];
//1.重新设置cell的宽度
#warning 因为cell的默认宽度就是320,所以我们需要做这样一个修改
self.width = JQMainScreenSize.width;
//2.配置子控件
self.nameLbl.backgroundColor=JQBlackColor;
self.nameLbl.numberOfLines=0;
self.nameLbl.font = JQFont;
self.nameLbl.textColor=[UIColor whiteColor];
self.explainsLbl.numberOfLines=0;
self.explainsLbl.backgroundColor=JQRedColor;
self.explainsLbl.textColor=[UIColor whiteColor];
self.explainsLbl.font = [UIFont systemFontOfSize:14];
//->nameLbl宽度固定,explainsLbl宽度伸缩
self.explainsLbl.width = self.width - self.nameLbl.width;
}