Label Alignment in iOS 6 - UITextAlignment deprecated

user123 picture user123 · Aug 12, 2012 · Viewed 89.4k times · Source

Seems like UITextAlignmentCenter is deprecated in iOS 6.

I still use it and works well, but it gives a warning.

How can I fix this?

label.textAlignment = UITextAlignmentCenter;

Thanks.

Answer

majorl3oat picture majorl3oat · Sep 22, 2012

In iOS6 you can use

label.textAlignment = NSTextAlignmentCenter;

Hope this helps.