我在自定义UIView中使用绘图功能来创建自定义纹理。问题是宽度和高度由UIStackView决定。当我创建视图时,我使用CustomView(frame: CGRect(x: 0, y: 0, width: 50, height: 50, color: color)
如果在自定义UIView使用绘制函数时实际宽度和高度未知。有没有办法保证UIBezierPath在UIStackView给定的范围内居中?
import Foundation
import UIKit
class CustomView: UIView {
let color: UIColor
required init(coder aDecoder: NSCoder) {
color = UIColor()
super.init(coder: aDecoder)!
}
init(frame: CGRect, color: UIColor) {
self.color = color
super.init(frame: frame)
self.backgroundColor = UIColor.init(hexString: CustomColors.pale_blue)
}
override func draw(_ rect: CGRect) {
color.setFill()
color.setStroke()
let width = Int(rect.size.width)
let height = Int(rect.size.height)
let yValue = Int(rect.origin.y)
let xValue = Int(rect.origin.x)
let rectBottom = UIBezierPath(rect: CGRect(x: xValue , y: yValue + height - (height/4), width: width, height: height/4))
let ovalTop = UIBezierPath(ovalIn: CGRect(x: xValue + (width/4), y:yValue + (height/3), width: width/2, height: height/2))
rectBottom.stroke()
rectBottom.fill()
ovalTop.fill()
ovalTop.stroke()
}
}
答案 0 :(得分:1)
在调用draw方法时,布局已经发生。只需看看draw()中的self.bounds。 要清楚,不要看通过绘制的矩形来确定你的几何。如果你只想重新绘制需要更新的位,你只能使用那个矩形。