I am having a default TableViewCell I am not Customizing it. I want to change the TextColor when I am selecting The TableViewCell Can We Do it.
A:
In the UITableViewCell
you can get the UILabel
with .textLabel
and set the highlightedTextColor
property.
myCell.textLabel.highlightedTextColor = [UIColor blackColor];
William Remacle
2010-10-08 12:23:01
Thanks a Lot Dude Its Work .......Before You I tried it That Time it was not working I might did some mistake Well again Thanks keep answering ....
Er.Priyank Maheshwari
2010-10-08 12:35:51