iPad:无法在拆分视图中设置自定义单元格的背景颜色

时间:2011-03-04 10:50:26

标签: iphone objective-c ipad

我试图设置自定义单元格的背景颜色,但不显示背景颜色。

 ProjectListCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[ProjectListCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

// Configure the cell...

if((indexPath.row%2)!=0)
{

    [cell setBackgroundColor:[UIColor redColor]];
}
else 
{

    [cell setBackgroundColor:[UIColor greenColor]];
}

这是因为splitview。

1 个答案:

答案 0 :(得分:13)

尝试改为使用cell.contentView.backgroundColorcell.backgroundView.backgroundColor