设置单元格的背景颜色不起作用 - IOS

时间:2012-08-02 06:42:42

标签: iphone objective-c ios xcode

  

可能重复:
  How to customize the background color of a UITableViewCell?

我正在尝试设置单元格的文本颜色,但它无法正常工作。这是代码..

cell_center.backgroundColor = [UIColor redColor];
cell_center.textLabel.backgroundColor = [UIColor grayColor];
cell_center.selectionStyle = UITableViewCellSelectionStyleGray;

此处选择样式正在运行但文本颜色不受影响。知道我做错了吗?

3 个答案:

答案 0 :(得分:2)

cell_center.textLabel.textColor = [UIColor redColor];

答案 1 :(得分:0)

你实际上想要设置你的TEXT颜色,但你甚至没有这样做。试试这个:

cell_center.textLabel.textColor = [UIColor blackColor];

答案 2 :(得分:-2)

看起来其他答案显示了如何更改单元格背景颜色,而不是标签背景颜色。

要更改标签背景颜色,请使用以下代码。

[cell_center.textLabel setBackgroundColor:[UIColor grayColor]];

如果这对您不起作用,请告诉我们,我们会再解决一些问题。