views:

45

answers:

2

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
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