It appears that UIAlertView is not compatible with iOS8. I\'ve just discovered that all my multiline UIAlertViews become truncated one-liners in iOS8 (for the message). In i
This issue is now resolved - got an answer from Apple Engineering:
"Your sample project declares a category on UILabel which overrides -intrinsicContentSize. Overriding UIKit methods leads to unpredictable behavior."
So I removed the override and everything worked fine.
Override was:
-(CGSize)intrinsicContentSize {
CGSize s = [super intrinsicContentSize];
s = CGSizeMake(s.width, s.height + 4);
return s;
}