How can I the change text color of the cells of a UITableView?
NO need for Labels
You just need to code :
cell.textLabel.textColor = [UIColor redColor];
or if you want to change the detailTextLabel :
cell.detailTextLabel.textColor = [UIColor blueColor];
good luck
You can add labels in the cell and set the color for these labels according to you .And also you can add more than one label and customize the cell.
simply use this line
cellLabel.textColor=[UIColor redColor]; //according to you.