I’m using a UINavController together with some UITableViews to display a kind of drill down for some data (e.g. like the Contact App). Works well. The only problem I have is, when I select a cell in the first table view it is highlighted, then the view switches to the next level and then, if I go back to the first level, the cell is still highlighted. So, how can I reset the highlighting when switching back?
I’m using a UINavController together with some UITableViews to display a kind of drill
Share
In the controller for the table view do:
Or you can deselect the selected row right in
tableView:didSelectRowAtIndexPath:where you handle pushing the next controller.