How to center a UILabel on UIView

前端 未结 7 2012
日久生厌
日久生厌 2020-12-13 06:12

How can I center the UILabel on the UIView? I am using the following code

float width = weatherView.bounds.size.width; 
float height = weatherView.bounds.siz         


        
7条回答
  •  一个人的身影
    2020-12-13 06:58

    Use NSTextAlignmentCenter if what you have is the label already set and you want to center its content.

    cell.menuLabel.textAlignment = NSTextAlignmentCenter;
    

提交回复
热议问题