I’ve got a UIViewController with a xib view that has a button and a table.
Everything is wired up, the data has rows in it etc. But if i click a row and navigate away from this initial screen, then go back, the cell in the table still has the highlighted state on it.
Do i need to implement methods other than numberOfSectionsInTableView, tableView:cellForRowAtIndexPath and tableView:didSelectRowAtIndexPath?
I’ve got a UIViewController with a xib view that has a button and a
Share
Implement
-viewWillAppear:on your view controller and deselect the table’s currently-selected row, something like this: