TableVIewCell 几种创建方式 的细节

1.第一种

staticNSString* ID =@"cell";

UITableViewCell* cell = [tableViewdequeueReusableCellWithIdentifier:ID];

if(cell ==nil) {

cell = [[UITableViewCellalloc]initWithStyle:UITableViewCellStyleSubtitlereuseIdentifier:ID];

}


第二种

你可能感兴趣的:(TableVIewCell 几种创建方式 的细节)