如何在 swift 中制作形状

How to make a shape in swift

如何制作这样的形状

func createShape() {
        bezierPath = UIBezierPath()
        bezierPath.move(to: .zero)
        bezierPath.addLine(to: CGPoint(x:self.frame.width , y: self.frame.origin.y))
        bezierPath.addLine(to: CGPoint(x: self.frame.width, y: self.frame.height / 2))
        bezierPath.addCurve(to: CGPoint(x:self.frame.width/2 , y: self.frame.height), controlPoint1: CGPoint(x: self.frame.width, y: self.frame.height / 2), controlPoint2: CGPoint(x:self.frame.width/2  + 33 , y: self.frame.height))
        bezierPath.addCurve(to: CGPoint(x: 0, y: self.frame.height / 2), controlPoint1: CGPoint(x:  self.frame.width/2 - 33, y:self.frame.height), controlPoint2: CGPoint(x: 0, y: self.frame.height / 2))
        bezierPath.addLine(to: .zero)
        bezierPath.close()
    }

结果我得到了

你能帮帮我吗?

了解曲线的工作原理here

let bezierPath = UIBezierPath()
        bezierPath.move(to: .zero)
        bezierPath.addLine(to: CGPoint(x: 0 , y: self.frame.height/2))
        bezierPath.addCurve(to:  CGPoint(x:self.frame.width , y: self.frame.height / 2), controlPoint1: CGPoint(x: 0, y: (self.frame.height+self.frame.width)/2), controlPoint2: CGPoint(x: self.frame.width, y: (self.frame.height+self.frame.width)/2))
        bezierPath.addLine(to: CGPoint(x: self.frame.width, y: 0))
        bezierPath.addLine(to: .zero)

这是你需要的图..它会用UIBezierpathaddArc方法给你完美的圆

import UIKit

@IBDesignable class CustomView: UIView {

 private lazy var shapeLayer = CAShapeLayer()
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        commonInit()
        
    }
    
    required init?(coder: NSCoder) {
        super.init(coder: coder)
        commonInit()
    }
    
    private func commonInit() {
        
        shapeLayer.fillColor = UIColor.black.cgColor
        shapeLayer.strokeColor = UIColor.red.cgColor
        shapeLayer.borderWidth = 5
        shapeLayer.frame = bounds
        
        
        layer.addSublayer(shapeLayer)
        
    }
    
    override func layoutSubviews() {
        
        shapeLayer.path = drawShape()
    }
    
    
    private func drawShape() -> CGPath {
        
        let bezierPath = UIBezierPath()
        
        bezierPath.move(to: .zero)
        bezierPath.addLine(to: CGPoint(x: 0, y: bounds.midY/2))
        bezierPath.addArc(withCenter: CGPoint(x: bounds.midX, y:  bounds.midY), radius: bounds.midX, startAngle: .pi, endAngle: 0, clockwise: false)
        
        bezierPath.addLine(to: CGPoint(x: bounds.maxX, y: 0))
        bezierPath.close()
        
        return bezierPath.cgPath
        
        
    }
    
    
}

带背景颜色