+ (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;
}
时间: 2024-10-24 15:10:59