UILabel Align Text to center

后端 未结 10 1753
心在旅途
心在旅途 2020-12-12 11:19

How do I align text in UILabel?

10条回答
  •  难免孤独
    2020-12-12 11:50

    N.B.: As per the UILabel class reference, as of iOS 6 this approach is now deprecated.

    Simply use the textAlignment property to see the required alignment using one of the UITextAlignment values. (UITextAlignmentLeft, UITextAlignmentCenter or UITextAlignmentRight.)

    e.g.: [myUILabel setTextAlignment:UITextAlignmentCenter];

    See the UILabel Class Reference for more information.

提交回复
热议问题