So here\'s my situation:
I have a UITableView where each cell has some buttons. In the cellForRowAtIndexPath I set the indexpath of the row so when the a button
You should be able to redraw the tableview without a full reload by starting and ending an update like this:
[tableView beginUpdates]; [tableView endUpdates];