i want to change my UILabel color which is in a custom Cell when the user selected a row in UITableView. i tried this
Code:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
.
.
.
.
cell.lblDetay.highlightedTextColor=[UIColor redColor];
.
.
.
but that doesnt run. how i can do that ?