How do you center the text inside a UILabel?
As of Xcode 10.2.1 use:
UIlabel.textAlignment = NSTextAlignment.center
Try out the following code:
lblObject.textAlignment=UITextAlignmentCenter;
Hope this helps you.