0

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

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

但这没有帮助。有谁能够帮助我?

提前致谢 !

4

2 回答 2

1

执行以下操作并记住一件事,您在 contentview 上添加的任何子视图都应该有 clearcolor。在我的情况下,我有默认的 textLabel,所以我将它设置为 clear color。

 cell.textLabel.backgroundColor = [UIColor clearColor];
    cell.contentView.backgroundColor = [UIColor blackColor];
于 2012-10-11T12:04:59.967 回答
0

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

于 2012-10-11T11:59:02.817 回答