前端之家收集整理的这篇文章主要介绍了
swift之UILabel,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
// 背景颜色
self.view.backgroundColor = UIColor.groupTableViewBackgroundColor()
// UILabel的创建
let textLabel = UILabel()
textLabel.frame = CGRectMake(10,100,self.view.frame.size.width-20,200)
textLabel.backgroundColor = UIColor.lightGrayColor()
// 倒角和边缘
textLabel.layer.cornerRadius = 10
textLabel.layer.borderWidth = 1.5
textLabel.layer.borderColor = UIColor.greenColor().CGColor
// 自适应高度
textLabel.text = "这是一个UILabel中要显示的文字...就发生的纠纷徕卡就是多了开发说句啊地方了开始就阿里客服 打算减肥了三季度付款了"
textLabel.font = UIFont.systemFontOfSize(20)
textLabel.numberOfLines = 0
textLabel.sizeToFit()
// 文字颜色
textLabel.textColor = UIColor.redColor()
// 文字位置
textLabel.textAlignment = NSTextAlignment.Left
self.view.addSubview(textLabel)
原文链接:https://www.f2er.com/swift/327573.html