tableview自定义工厂方法CELL

BrandStreetCell* cell=[BrandStreetCell returnReuseCellFormTableView:self.brandtableview indexPath:indexPath identifier:BrandStreetCellIdentifier];

  • (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
    {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
    [self goodmodelarray];
    [self layoutSubviewCell];
    }
    return self;
    }

+(instancetype)returnReuseCellFormTableView:(UITableView *)tableView
indexPath:(NSIndexPath *)indexPath
identifier:(NSString *)identifierString
{
BrandStreetCell *cell = [tableView dequeueReusableCellWithIdentifier:identifierString forIndexPath:indexPath];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.contentView.backgroundColor = [UIColor whiteColor];
return cell;
}

你可能感兴趣的:(tableview自定义工厂方法CELL)