1

我知道这可能很明显,但我没有在 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;
}

我得到的是:

表格视图单元格有黑色背景

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

4

2 回答 2

6

您需要设置标签的背景,以及单元格的背景:

cell.textLabel.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = [UIColor clearColor];
于 2012-06-18T14:53:32.887 回答
1

采用 :

cell.contentView.backgroundColor=[UIColor clearColor];

代替:

cell.backgroundColor=[UIColor clearColor];
于 2012-06-18T14:50:24.760 回答