gpt4 book ai didi

swift - 无法在 Storyboard上移动自定义 UIView

转载 作者:行者123 更新时间:2023-11-28 08:11:49 25 4
gpt4 key购买 nike

我已经创建了自定义 UIView

import UIKit
@IBDesignable
class CategoryIcon: UIView {
let pi:CGFloat = CGFloat(M_PI)

@IBInspectable var circleColor:UIColor = UIColor.green
@IBInspectable var width:CGFloat = 10
@IBInspectable var radius: CGFloat = 20

override func draw(_ rect: CGRect) {

center = CGPoint(x:bounds.width/2 ,y:bounds.height/2)
let path = UIBezierPath(ovalIn: rect)
path.lineWidth = width
circleColor.setStroke()
path.stroke()

}

}

但是当我将它添加到 Storyboard 时,无论我把它放在哪里,它都停留在父 View 的左上角as you can see dots shows that view has moved but drawings are out of view and at the left top

问题是什么,如何解决?

最佳答案

从您的draw(rect:) 方法中删除以下行:

    center = CGPoint(x:bounds.width/2 ,y:bounds.height/2)

通常不建议在执行绘图代码时更改 View 的状态。但在这种特殊情况下,您要根据其 bounds 的原点更改 View 的 frame 的位置,通常为 (0, 0),除非您在别处修改了边界。不清楚您希望通过这样做完成什么,但它实际上所做的是将 View 移动到左上角。

关于swift - 无法在 Storyboard上移动自定义 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43572405/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com