我正在制作UI圆圈,并希望在我的xcode中添加 CustomView.swift 。
这是Xcode中的最新版本
import UIKit
class CustomView: UIView {
override func draw(_ rect: CGRect) {
oval1()
oval2()
}
func oval1() {
/// [marker1]
let path = UIBezierPath(
ovalIn: CGRect(x: 20.0, y: 30.0, width: 50.0, height: 100.0)
)
UIColor.lightGray.setFill()
path.fill()
/// [marker1]
}
func oval2() {
/// [marker2]
let path = UIBezierPath(
ovalIn: CGRect(x: 20.0, y: 150.0, width: 100.0, height: 100.0)
)
UIColor.lightGray.setFill()
path.fill()
/// [marker2]
}
}
在模拟器上画圈