In the controller, to present the table, do:
-(void) viewWillAppear:(BOOL)inAnimated {
NSIndexPath *selected = [self.table indexPathForSelectedRow];
if ( selected ) [self.table deselectRowAtIndexPath:selected animated:NO];
}
tableView:didSelectRowAtIndexPath:, .