UILineBreakModeWordWrap jest przestarzały

Oto mój kod:

CGSize s = [string sizeWithFont:[UIFont systemFontOfSize:20]
               constrainedToSize:CGSizeMake(self.view.bounds.size.width - 40, CGFLOAT_MAX) // - 40 For cell padding
                   lineBreakMode:UILineBreakModeWordWrap];

Otrzymuję ostrzeżenie, że UILinebBreakModeWordWrap jest przestarzały w iOS 6.

questionAnswers(2)

yourAnswerToTheQuestion