我正在尝试根据线框创建一个半圆形按钮。
但是结果不正确。
这是我用C#编写的代码:
PORCalculatorButton.Layer.CornerRadius = PORCalculatorButton.Layer.Bounds.Width / 2;
PORCalculatorButton.ClipsToBounds = true;
PORCalculatorButton.Layer.MaskedCorners = (CoreAnimation.CACornerMask)3;
按钮上也有布局限制。
任何人都可以告诉我哪里出了问题或者是否有更好的方法? 我将接受ObjC,Swift或C#中的所有答案 谢谢。
答案 0 :(得分:2)
尝试以下代码:
let circlePath = UIBezierPath.init(arcCenter:
CGPointMake(PORCalculatorButton.bounds.size.width / 2, PORCalculatorButton.bounds.size.height), radius: PORCalculatorButton.bounds.size.height, startAngle: 0.0, endAngle: CGFloat(M_PI), clockwise: false)
let circleShape = CAShapeLayer()
circleShape.path = circlePath.CGPath
PORCalculatorButton.layer.mask = circleShape
答案 1 :(得分:0)