i have several table views in my app. I am familiar with the usual behaviour of tables, that when you select a row and progress to a pushed view, it turnes blue, then when y
Try
[tableView deselectRowAtIndexPath:indexPath animated:NO];
for deselecting a row and
[tableView selectRowAtIndexPath:indexPath animated:NO];
for highlighting the selected row.