What is difference between NSLineBreakByWordWrapping and UILineBreakModeWordWrap ?
For example when I used this code:
button.titleLabel.textAlignment = UITextAlignmentCenter;
Xcode said:
UITextAlignmentCenter is deprecated: first deprecated in iOS 6.0
But when I use NSTextAlignmentCenter, it was fine – so what can be the reason?
The cause s that
UITextAlignmentis deprecated in iOS 6 and the actualtextAlignmentproperty’s type isNSTextAlignment.See: Reference