Here’s my code:
CGSize s = [string sizeWithFont:[UIFont systemFontOfSize:20]
constrainedToSize:CGSizeMake(self.view.bounds.size.width - 40, CGFLOAT_MAX) // - 40 For cell padding
lineBreakMode:UILineBreakModeWordWrap];
I get a warning that UILinebBreakModeWordWrap is deprecated in iOS 6.
You need to use
NSLineBreakByWordWrappingin iOS 6For your code try this:
an example on a label would be:
Instead of