I'm having navigation controller with few views. I've table view in one of the views. I'm showing tick mark when user selects a cell in table view. Upto this point, its fine. When user goes back to previous view and comes back, i want to reset the table view. How?
+1
A:
If you need to reload data, you can call [tableView reloadData]
.
Jeff Kelley
2010-06-15 16:41:35
A:
I have a similar issue (or even the same.) I use a tableView to show detail on a selection, but once selected the first time, loadView does not get called again. As a result, the details do not change, but keep showing the first selection over and over.
How would I force a call to loadView each time that the tableView is needed?
Brian
2010-08-11 18:17:02