I am having a tableview and I want to know that how can I change the selected row\'s text color, say to Red ? I tried by this code :
- (UITableViewCell *)tableV
Do this in tableView:cellForRowAtIndexPath:
:
cell.textLabel.highlightedTextColor = [UIColor redColor];
(And don't use cell.text = ...
anymore. It has been deprecated for almost 2 years now. Use cell.textLabel.text = ...
instead.)
As Raphael Oliveira mentioned in the comments, if the selectionStyle of your cell equals UITableViewCellSelectionStyleNone
this won't work. Check Storyboard as well for the selection style.