Tuesday, September 25, 2012

UITextAlignment Deprecated in iOS 6

I just switched my app over to point at iOS 6 and got hammered with 67 warnings, most being 'UITextAlignmentCenter' is deprecated: first deprecated in iOS 6.0' and thus, I needed to figure out what the new alignment class was. A quick search brought  me back to Stack Overflow and I found my answer. NSText! It has all the same alignment's that UIText did so a quick replacement of all my old code and I was happily on my way.


UILabel Align Text to center

Aravindhanarvi answered:

From iOS 6 and later UITextAlignment is deprecated. use NSTextAlignment
myLabel.textAlignment = NSTextAlignmentCenter;

No comments:

Post a Comment