imzyf / ios-swift-learning-notes

📝 iOS Swift Learning Notes - see Issues
MIT License
0 stars 0 forks source link

UILable 属性 自动换行 居中显示 #24

Open imzyf opened 6 years ago

imzyf commented 6 years ago

http://blog.csdn.net/ios_db/article/details/17225315

//文字居中显示
label.textAlignment = UITextAlignmentCenter;
//自动折行设置
label.lineBreakMode = UILineBreakModeWordWrap;
label.numberOfLines = 0;