Sélectionné UItableViewCell rester bleu lorsqu'il est sélectionné

Quand je pousse un point de vue après que l'utilisateur a sélectionné un UITableView ligne, la ligne devient bleu en surbrillance, puis le nouveau point de vue s'affiche. C'est très bien. Mais quand je suis de "retour", la ligne est toujours mis en surbrillance en bleu. Voici mon didSelectRowAtIndexPath code.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    SettingsViewController *controller = [[SettingsViewController alloc] initWithNibName:@"SettingsView" bundle:nil];
    [[self navigationController] pushViewController:controller animated:YES];
    [controller release], controller = nil; 
}

Ce que je fais mal?

InformationsquelleAutor cannyboy | 2010-05-10