I have a UITableView with a custom UITableViewCell. In cellForRowAtIndexPath, I assign a font to a label in every cell, since the user can change font size at any time. To cha
For the cells that are still there you have to update the font of the label. You'll need a way to access the custom label in your custom cell.
After changing the font size do something like:
for (MyCell* cell in [theTableView visibleCells]) { [cell.myLabel.font = newFont]; }