let label = UILabel(frame: CGRect(x: 10, y: 240, width: 300, height: 35))
label.backgroundColor = UIColor(displayP3Red: 153.0/255, green: 153.0/255, blue: 153.0/255, alpha: 1) // 设置背景颜色
label.text = "hello world" // 设置文字
label.textColor = UIColor.white // 设置文字颜色
label.numberOfLines = 0 // 设置文字自动换行
label.textAlignment = NSTextAlignment.center // 设置文字居中
label.font = UIFont.systemFont(ofSize: 11) // 设置字体大小
label.layer.cornerRadius = 3 // 设置圆角
label.layer.masksToBounds = true
label.shadowColor = UIColor.red // 阴影颜色
label.shadowOffset = CGSize(width: 1, height: 1) // 阴影偏移量
label.layer.borderColor = UIColor.green.cgColor // 边框颜色
label.layer.borderWidth = 2 // 边框宽度
self.view.addSubview(label)
网友评论