I have a UITableViewCell with a custom UIButton and UILable in the contentView. The button is a checkbox and toggles between a checked and unchecked state, with different images for each state. If I click the button multiple times the characters in the UILable degrade visually, a little more with each click. Im using Helvetica-Bold in the label.
If I pop the view controller and then navigateo back into the table, all is fixed.
Ideas?
jk
I think what’s going on is that each time you recycle the cell, you’re adding views. Look at ControlsViewController.m in the UICatalog sample code, the comment “the cell is being recycled, remove old embedded controls” should help…