Comment mettre en évidence une ligne dans un UITableView

Le code ci-dessous ne semble pas avoir d'effet. Je veux qu'il soit mis en surbrillance dans la même manière, il met en évidence lorsque vous appuyez sur une ligne

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
   ...
   [cell.textLabel setHighlighted:YES];


   return cell;
}

source d'informationauteur TheLearner