Reputation: 191
I am developing an app on Xcode 5.1.1
I have some labels that display dynamic text. I do not understand their behavior.
I have no problems on ios6.0
on ios7.1 i had to put
cell.backgroundColor = [UIColor clearColor];
to remove a white background that covered part of the text
on ios7.0 only part of the text is visible
how can I download the simulator to ios7.0? in "other simulators" is not present
Upvotes: 1
Views: 454
Reputation: 69499
There is known bug where the UITableViewCell background is set to white when displaying.
A solution is to set the background colour in the tableView:willDisplayCell:forRowAtIndexPath:
.
Upvotes: 1