UIlabel设置背景为圆形

前端之家收集整理的这篇文章主要介绍了UIlabel设置背景为圆形前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

直接对label的cornerRadius进行设置

var text = UILabel(frame: CGRectMake(10,30,UIScreen.mainScreen().bounds.size.width - 20,200))
        text.text = "背景为圆形 "
        text.backgroundColor = self.view.backgroundColor
        text.textColor = UIColor.whiteColor()
        text.font = UIFont.systemFontOfSize(22)
        text.textAlignment = NSTextAlignment.Center
        label.layer.cornerRadius = label1.bounds.size.width/2
        self.view.addSubview(text)
原文链接:https://www.f2er.com/swift/327500.html

猜你在找的Swift相关文章