1

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.

Community
  • 1
  • 1
Neo
  • 2,807
  • 1
  • 16
  • 18

1 Answers1

6

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.

Michael Dautermann
  • 88,797
  • 17
  • 166
  • 215