How do I align text in UILabel?
UILabel
From iOS 6 and later UITextAlignment is deprecated. use NSTextAlignment
UITextAlignment
NSTextAlignment
myLabel.textAlignment = NSTextAlignmentCenter;
Swift Version from iOS 6 and later
myLabel.textAlignment = .center