设置自定义tableviewCell的背景

时间:2012-10-11 11:50:28

标签: objective-c ios uitableview uicolor

我想将customTableViewCell的背景设置为黑色。经过一些搜索后,最常见的答案是在我的CellForRowAtIndex中执行此操作。

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

但它没有帮助。有人能帮助我吗?

提前致谢!

2 个答案:

答案 0 :(得分:1)

请执行以下操作并记住一件事,无论您在contentview上添加哪个子视图都应该有clearcolor。在我的情况下,我有默认的textLabel,所以我将其设置为清晰的颜色。

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

答案 1 :(得分:0)

设置背景如下: cell.contentView.backgroundColor = [UIColor blackColor];