Center text in a UILabel

后端 未结 8 621
醉话见心
醉话见心 2021-02-03 16:39

How do you center the text inside a UILabel?

相关标签:
8条回答
  • 2021-02-03 17:16

    As of Xcode 10.2.1 use:

    UIlabel.textAlignment = NSTextAlignment.center
    
    0 讨论(0)
  • 2021-02-03 17:18

    Try out the following code:

    lblObject.textAlignment=UITextAlignmentCenter;
    

    Hope this helps you.

    0 讨论(0)
提交回复
热议问题