UITableViewCell黑色背景

时间:2012-06-18 14:47:57

标签: ios uitableview

我知道这可能是显而易见的,但我没有将背景设置为IB中的任何颜色。我UITableView的代码是:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellID = @"Cell Identifier";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];

    if(!cell)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID];
    }

    cell.textLabel.text = [_listeDesChapitres objectAtIndex:indexPath.row];
    cell.backgroundColor = [UIColor clearColor];

    return cell;
}

我得到的是:

Table view cells have black background

默认情况下,单元格背景为黑色,直到我单击它以查看其文本。我错过了什么吗?

2 个答案:

答案 0 :(得分:6)

您需要设置标签的背景和单元格的背景:

cell.textLabel.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = [UIColor clearColor];

答案 1 :(得分:1)

使用:

cell.contentView.backgroundColor=[UIColor clearColor];

而不是:

cell.backgroundColor=[UIColor clearColor];