标签:style sp c ef type ui table bs return
+ (instancetype)cellWithTableView:(UITableView *)tableView
{
static NSString *ID = @"Cell";
Cell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (cell == nil) {
cell = [[Cell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
}
return cell;
}
标签:style sp c ef type ui table bs return
原文地址:http://www.cnblogs.com/OneBlackLee/p/3946299.html