I’m wondering how to best update a UITableView. I have a settings area where the user can save preferences (saved to NSUserDefaults). Then when they come back to the table view the list of data needs to be updated to reflect the settings/prefs changes the user has made.
At the moment I have the simply have [self.tableView reloadData]; in the viewWillAppear: method
thanks for any help
It is kind a best way to reload your table.
if you want to reload one row(or more), you can use
if you want to do multiple inserts or delete you can use
[self.tableView reloadData];reload everything…redisplays visible rows, reloads data.