iOS6 Text Centering Issue
After upgrading Xcode, I hadn’t used it much until today when I tried to set the centering property for a label. I discovered that the previously used text centering property, UITextAlignment, is now deprecated. See the image below. Upon checking the documentation, I found that iOS6 introduced a new property, NSTextAlignment. The new property includes Justified and Natural, so out of curiosity, I tried the Natural property on a label. It resulted in an error. ...