我想在UITableView Cell中添加文本颜色。
我想在UITableView Cell中表现出来。
红色,绿色,黄色
但是,以下代码只能使用1种颜色。
cell.textLabel.textColor=[UIColor redColor];
cell.textLabel.text=@"4:00 AM , 9:00 AM , 10:00PM ";
我希望上午4:00用红色显示,上午9:00用绿色显示,晚上10:00用黄色显示。
我该怎么写呢?我可以在UITableView中这样做吗?