我正在以编程方式创建一个
UILabel
。但下面的代码没有给我圆角。我想我错过了一些非常基本的东西。
var textLabel:UILabel? = UILabel()
textLabel?.text = text
textLabel?.frame = CGRect(x:point.x, y:point.y, width:(textLabel?.intrinsicContentSize.width)!, height:15)
textLabel?.backgroundColor = UIColor.white
textLabel?.font = UIFont(name:"OpenSans", size:8)
textLabel?.sizeToFit()
textLabel?.layer.cornerRadius = 20.0
有人可以指出我正确的方向吗?
我认为你应该为textLabel设置maskToBounds。试试这个:
textLabel?.layer.masksToBounds = true
迅捷4.2
设置标签角半径。 试试这个......
labelVerified.layer.cornerRadius = 6
labelVerified.layer.masksToBounds = true
试试这个:-
textLabel?.layer.cornerRadius = textLabel?.frame.size.height/2.0
textLabel?.layer.masksToBounds = true
如果你想设置边框颜色,那么:-
textLabel?.layer.borderColor = .red.cgColor
textLabel?.layer.borderWidth = 1.0
为您的标签设置
masksToBounds
masksToBounds 充当布尔值,指示子图层是否被剪切到图层的边界。
textLabel?.layer.cornerRadius = 20.0
textLabel?.layer.masksToBounds = true
参考苹果文档。
试试这个:
yourLabel.layer.cornerRadius = 8.0
yourLabel.layer.masksToBounds = true
yourLabel.layer.borderColor = UIColor.white.cgColor
yourLabel.layer.borderWidth = 1.0
这应该给你圆形边框
关键是属性“maskToBounds”,它是一个布尔值,指示子图层是否被裁剪到图层的边界。