以编程方式在屏幕上绘制自定义椭圆形 swift

Programmatically drawing custom oval shape on screen swift

如何在 swift(不是 swiftUI)中绘制自定义椭圆形,如下图所示。

提前致谢

你可以像这样画椭圆路径

class CustomOval: UView {

    override func drawRect(rect: CGRect) {
       var ovalPath = UIBezierPath(ovalIn: rect)
        UIColor.gray.setFill()
        ovalPath.fill()
    }
}

我已尝试使用 UIView 克隆类似的视图,并且能够创建类似的 UI,如您在屏幕截图中所述

这是我的代码片段

let width: CGFloat = view.frame.size.width
let height: CGFloat = view.frame.size.height

let path = UIBezierPath(roundedRect: CGRect(x: 0, y: 0, width: self.view.bounds.size.width, height: self.view.bounds.size.height), cornerRadius: 0)
let rect = CGRect(x: width / 2 - 150, y: height / 2.5 - 100, width:  300, height: 400)
let circlePath = UIBezierPath(ovalIn: rect)
path.append(circlePath)
path.usesEvenOddFillRule = true

let fillLayer = CAShapeLayer()
fillLayer.path = path.cgPath
fillLayer.fillRule = .evenOdd
fillLayer.fillColor = UIColor.red.cgColor
fillLayer.opacity = 0.5
view.layer.addSublayer(fillLayer)

希望对您有所帮助。美好的一天。