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/
Since you already have indexPath of the cell, sometimes this may just do the job
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath]; [cell reloadInputViews];