UILabel的常用属性
直接上代码:
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
//定义一个label
let myLabel : UILabel = UILabel(frame: CGRectMake(0,0,200,50));
//设置label的背景色
myLabel.backgroundColor = UIColor.yellowColor()
//设置layer 可以用此属性来防止子元素大小溢出父元素,如若防止溢出为true
myLabel.layer.masksToBounds = true
//设置label的圆角半径
myLabel.layer.cornerRadius = 5
//设置label的text
myLabel.text = "
欢迎来我的个人博客,希望多多赐教:Coding24h编程无休止