I see some strange behavior in one of my UITableViewCells. When setting the font of textLabel to an italic font ( [UIFont fontWithName:@"Helvetica-BoldOblique" size:17] ), a few pixels at the end get cut off. It’s not looking really bad, but I would like to avoid it. Any suggestions?
I’m using the default UITableViewCell as I only need one UILabel, so no need to subclass. I tried calling [cell.textLabel sizeToFit] after setting the font, but it didn’t work.

As occulus pointed out, the
UILabelis not wide enough for the italic text. However, because I’m using the defaultUITableViewCell, I can not change this. (ThetextLabelframe seems to be set at some point unknown to me. When-tableView:willDisplayCell:forRowAtIndexPath:is called, it’s stillCGRectZero.)So the only solution seems to add a space at the end of my string, as Nick Weaver suggested: