我想将我的 customTableViewCell 的背景设置为黑色。经过一番搜索,最常见的答案是在我的 CellForRowAtIndex 中执行此操作。
cell.contentView.backgroundColor = [UIColor clearColor];
cell.backgroundColor = [UIColor blackColor];
但这没有帮助。有谁能够帮助我?
提前致谢 !
我想将我的 customTableViewCell 的背景设置为黑色。经过一番搜索,最常见的答案是在我的 CellForRowAtIndex 中执行此操作。
cell.contentView.backgroundColor = [UIColor clearColor];
cell.backgroundColor = [UIColor blackColor];
但这没有帮助。有谁能够帮助我?
提前致谢 !
执行以下操作并记住一件事,您在 contentview 上添加的任何子视图都应该有 clearcolor。在我的情况下,我有默认的 textLabel,所以我将它设置为 clear color。
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = [UIColor blackColor];
设置背景如下: cell.contentView.backgroundColor = [UIColor blackColor];