views:

41

answers:

3

I have a UISplitViewController with a Table View for navigation. It's similar to the Mail app. When you click on a table view in portrait mode, the popup hides itself. When you click on the nav bar to get the popup back, the selected item no longer appears selected. How can make this item appear selected without re-selecting the item? (just like in the mail app)

A: 

Do you have by any change a

[tableView deselectRowAtIndexPath:indexPath animated:YES];

in your didSelectRowAtIndexPath in the RootViewController ?

Paul Ardeleanu