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

 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。

最佳答案

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

关于iphone - iPad:无法在拆分 View 中设置自定义单元的背景色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5192747/

10-12 12:47