Search code examples
ioscocoa-touchtextalignmentuilabel

UILabel Align Text to center


How do I align text in UILabel?


Solution

  • From iOS 6 and later UITextAlignment is deprecated. use NSTextAlignment

    myLabel.textAlignment = NSTextAlignmentCenter;
    

    Swift Version from iOS 6 and later

    myLabel.textAlignment = .center