如何更改文本颜色或UITableView单元格?

时间:2011-02-14 13:09:36

标签: iphone uitableview

我在UITableView中添加了一些数据,但我想更改单元格中显示的颜色或文本。 有没有任何委托方法来做这个或任何其他方式????

3 个答案:

答案 0 :(得分:36)

不需要标签

你只需要编码:

cell.textLabel.textColor = [UIColor redColor];

或者如果你想改变detailTextLabel:

cell.detailTextLabel.textColor = [UIColor blueColor];
祝你好运

答案 1 :(得分:23)

您可以在单元格中添加标签,并根据您的需要设置这些标签的颜色。您还可以添加多个标签并自定义单元格。

只需使用此行

即可
cellLabel.textColor=[UIColor redColor]; //according to you.

答案 2 :(得分:1)

根据颜色代码的十六进制数的代码

使用此代码

如果颜色代码是:#4B4B4B所以红色:75绿色:75蓝色:75

cell.textLabel.textColor = 
             [UIColor colorWithRed:75.0/255.0 green:75.0/255.0 blue:75.0/255.0 alpha:1];