iOS Table View Refresh Cell

ios, iphone, objective-c, uitableview

Solution

You can call `[self.tableview reloadData];` on the tableview and refresh the entire table.

Otherwise you can do this to refresh a single cell.

 [self.tableView beginUpdates];
 [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPathOfYourCell] withRowAnimation:UITableViewRowAnimationNone];
 [self.tableView endUpdates];

Problem

I followed the advice in the link below to add images to cells in a table view. Adding Image to Table Cell (iOS) Is there a way to force refresh a cell i.e. add/remove images or indicators?

Original source

Related problems