Search code examples
ios6text-alignment

Difference between UITextAlignmentCenter and NSTextAlignmentCenter


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?


Solution

  • The cause s that UITextAlignment is deprecated in iOS 6 and the actual textAlignment property's type is NSTextAlignment. See: Reference