Reload the data, call the two main methods in your table view data source, numberOfRowsInSection , and then go to cellForRow:atIndexPath: for visible cells, depending on your tableView contentOffset
If your application scrolls well already, then the only performance striking for your application will continue if you do a lot of work in numberOfRowsInSection (for example, hit the network or something a lot of time).
Edit: As already noted, heightForRow:atIndexPath: can also be a pain point if you use it to perform complex calculations for different height cells.
source share