设置单元格文本颜色

时间:2010-09-25 21:33:04

标签: iphone objective-c

显然这已被弃用:

cell.textColor = [UIColor whiteColor];

有谁知道改变Cell Text颜色的最佳方法是什么?


评论后编辑:

我现在正在使用它:

cell.textLabel.textColor = [UIColor whiteColor];

但颜色仍未改变,请参阅IB参数:

alt text

2 个答案:

答案 0 :(得分:17)

cell.textLabel.textColor = [UIColor whiteColor];

答案 1 :(得分:2)

就像UITableViewCell页面上的Apple所说http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewCell_Class/Reference/Reference.html

  

标题文字的颜色。 (在iOS 3.0中不推荐使用。而是设置分配给textLabel和detailTextLabel属性的UILabel对象的文本颜色属性。)

您必须使用textLabel而不是textColor; - )

编辑:您必须添加自己的textLabel。 你必须忘记cell.text