Possible Duplicate:
Is it possible to refresh a single UITableViewCell in a UITableView?
Sorry if the question is stupid but instead of using [mytableview reloaddata]
,how can we reload the data of only specific UITableViewCell
.
Possible Duplicate:
Is it possible to refresh a single UITableViewCell in a UITableView?
Sorry if the question is stupid but instead of using [mytableview reloaddata]
,how can we reload the data of only specific UITableViewCell
.
You want UITableView's reloadRowsAtIndexPaths: withRowAnimation:
method. I've linked the documentation for you.
All you need to provide is the index paths to the cell(s) you want to redraw.