简体   繁体   English

画一个半圆按钮iOS

[英]Draw a semi-circle button iOS

I am trying to draw a semi-circle button.我正在尝试绘制一个半圆形按钮。 I'm having trouble both drawing the semi-circle and attaching it to the button I made in xcode.我在绘制半圆并将其附加到我在 xcode 中制作的按钮上都遇到了麻烦。 The button in xcode has constraints pinning it to the bottom of the screen and centering it. xcode 中的按钮具有将其固定到屏幕底部并将其居中的约束。 I reference the button in my view controller and then try to override it to a semi-circle as follows.我在视图控制器中引用按钮,然后尝试将其覆盖为半圆,如下所示。 I am getting a blank button.我得到一个空白按钮。 I also hard coded in the coordinates from the storyboard of where the button is.我还在按钮所在的故事板的坐标中进行了硬编码。 Is there a better way to do that?有没有更好的方法来做到这一点?

let circlePath = UIBezierPath.init(arcCenter: CGPoint(x: 113.0, y: 434.0),
radius: 10.0, startAngle: 0.0, endAngle: CGFloat(M_PI), clockwise: true)

let circleShape = CAShapeLayer()
circleShape.path = circlePath.CGPath

sunButton.layer.mask = circleShape

The problem is that your shape layer is positioned way outside the buttons bounds.问题是您的形状图层位于按钮边界之外。 If you just add the shape layer as a subview of your button's layer you'll see the problem:如果您只是将形状图层添加为按钮图层的子视图,您将看到问题:

button.layer.addSublayer(circleShape)

在此处输入图片说明

You have to adjust the arc center point, so that the arc lies within the button's bounds:您必须调整弧中心点,使弧位于按钮的边界内:

let circlePath = UIBezierPath.init(arcCenter: CGPointMake(button.bounds.size.width / 2, 0), radius: button.bounds.size.height, startAngle: 0.0, endAngle: CGFloat(M_PI), clockwise: true)
let circleShape = CAShapeLayer()
circleShape.path = circlePath.CGPath
button.layer.mask = circleShape

And you'll get this:你会得到这个:

在此处输入图片说明

Swift 5 update:斯威夫特 5 更新:

let circlePath = UIBezierPath.init(arcCenter: CGPoint(x: button.bounds.size.width / 2, y: 0), radius: button.bounds.size.height, startAngle: 0.0, endAngle: .pi, clockwise: true)
let circleShape = CAShapeLayer()
circleShape.path = circlePath.cgPath
button.layer.mask = circleShape

Swift 5:斯威夫特 5:

    // semiCircleDown
  let circlePath =  UIBezierPath(arcCenter: CGPoint(x: shapeView.bounds.size.width/2, y: 0), radius: shapeView.bounds.size.height, startAngle: 0, endAngle: .pi, clockwise: true).cgPath

        //semiCircleUp
  let circlePath =  UIBezierPath(arcCenter: CGPoint(x: shapeView.bounds.size.width/2, y: 0), radius: shapeView.bounds.size.height, startAngle: 2 * .pi, endAngle: .pi, clockwise: true).cgPath

        //quarterCircleRightDown
  let circlePath =  UIBezierPath(arcCenter: CGPoint(x: 0, y: 0), radius: shapeView.bounds.size.width, startAngle: 2 * .pi, endAngle: .pi * 3/2, clockwise: true).cgPath

        //quarterCircleLeftDown 
  let circlePath =  UIBezierPath(arcCenter: CGPoint(x: shapeView.bounds.size.width, y: 0), radius: shapeView.bounds.size.width, startAngle: .pi * 3/2, endAngle: .pi, clockwise: true).cgPath

        quarterCircleRightUp
  let circlePath = UIBezierPath(arcCenter: CGPoint(x: 0, y: shapeView.bounds.size.height), radius: shapeView.bounds.size.width, startAngle: 0, endAngle: .pi/2, clockwise: false).cgPath

        //quarterCircleLeftUp
  let circlePath = UIBezierPath(arcCenter: CGPoint(x: shapeView.bounds.size.width, y: shapeView.bounds.size.height), radius: shapeView.bounds.size.width, startAngle: .pi/2, endAngle: .pi, clockwise: false).cgPath

let shape = CAShapeLayer()
shape.path = circlePath.cgPath
shapeView.layer.mask = shape

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM