在动态原型单元格之前添加静态单元格

时间:2013-12-21 23:53:46

标签: ios objective-c uitableview

我希望有一个单元格会有一些带有一些标签的静态文本,但由于我使用的是动态单元格,它会使用NSArray中的任何数据填充每个单元格。

这是我的源代码,我正在“设计”我的动态单元格。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"StandingsIdent";
    StandingsViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    // Configure the cell...
    long row = [indexPath row];
    cell.cellTeamName.text = _teamNames[row];
    cell.cellTeamLogo.image = [UIImage imageNamed:_teamLogos[row]]; 
    cell.cellTeamPosition.text = _teamPosition[row]; 

    if (indexPath.row % 2) {
        cell.backgroundColor = [[UIColor alloc]initWithRed:235.0/255.0 green:235.0/255.0 blue:235.0/255.0 alpha:1];  } 
    else { 
        cell.backgroundColor = [[UIColor alloc]initWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:1]; 
    }

    return cell;
}

有谁愿意帮助我吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

添加类似内容并根据自己的喜好配置第一个单元格:

if (indexPath.section == 0 && indexPath.row == 0) {
// Configure static cell differently
}
else {
...
}