我使用bezier路径在UI按钮上添加圆形边框。
我总是有一个额外的线路,我不想。
此处输入代码
let maskLayer = CAShapeLayer()
maskLayer.frame = self.bounds
maskLayer.path = UIBezierPath(roundedRect: self.bounds, byRoundingCorners: [.topLeft,.topRight], cornerRadii: CGSize(width: cornerRadius, height: 2)).cgPath
self.layer.mask = maskLayer
// Add border
let borderLayer = CAShapeLayer()
borderLayer.path = maskLayer.path // Reuse the Bezier path
borderLayer.fillColor = UIColor.clear.cgColor
borderLayer.strokeColor = UIColor.white.cgColor
borderLayer.lineWidth = 1
borderLayer.frame = self.bounds
self.layer.addSublayer(borderLayer)
截图
谢谢你们!
最佳答案
我建议使用以下代码:
button.layer.borderWidth = 2.0
button.layer.borderColor = UIColor.white.cgColor
button.layer.cornerRadius = 5.0
button.layer.masksToBounds