gpt4 book ai didi

ios - 如何在不重绘的情况下更改 UIBezierPath strokeColor

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:24:57 25 4
gpt4 key购买 nike

我使用贝塞尔曲线创建了 body 图像图。

在我的 customView 中,我为每个 body 部位创建了大约 62 条贝塞尔曲线!最初所有这些都设置为默认颜色。当用户触摸这些路径中的任何一个时,我试图更改它们的笔触颜色。

enter image description here

一种方法是为每个 bezierPath 声明一个 bool 变量,并相应地切换它们。但我认为这是实现它的困难方法。声明 62 个额外的 bool 变量并管理它们。

这是我正在尝试做的事情:

声明贝塞尔曲线属性:

@property (strong,nonatomic) UIBezierPath * rightEyePath;
@property (strong,nonatomic) UIBezierPath * leftEyePath;
@property (strong,nonatomic) UIBezierPath * nosePath;
@property (strong,nonatomic) UIBezierPath * mouthPath;
.... so on

并在 drawRect 中绘制它们:

 _leftEyePath = [UIBezierPath bezierPath];
[_leftEyePath moveToPoint: CGPointMake(...)];
[_leftEyePath addLineToPoint: CGPointMake(...))];
[_leftEyePath closePath];
[_defaultColor setStroke];
_leftEyePath.lineWidth = 0.5;
[_leftEyePath stroke];

在 touchesMove 方法中,我试图更改贝塞尔曲线 strokeColor:

if ([_rightEyePath containsPoint:touchPoint])
{
[_defaultColor setStroke];
_rightEyePath.lineWidth = 0.5;
[_rightEyePath stroke];
}

它没有用,因为我没有调用重绘贝塞尔曲线的 setNeedsDisplay。

如何在 drawRect 中为这 62 个贝塞尔曲线传递不同的颜色而无需声明 62 个 bool 变量。

我正在寻找完成任务的有效方法。

最佳答案

我知道你要求的是 objective-C,但这里有一个伪代码 swift 示例来说明我的意思

设置你需要的枚举器

enum BodyPartEnumerator : Int {
case _rightEyePath = 0
case _leftEyePath = 1
// and all the rest...
}

然后定义你需要的数据结构

struct BodyPartData {
var bodyPartIndex : Int
var bezierPath : UIBezierPath
var selected : Bool
}

为 body 部位定义一个数组

var bodyPartData : [BodyPartData] = []

然后 - 要么对每个 body 部位进行硬编码(如您目前所做的那样),要么(更好)从数据文件中加载点。您可以只存储由 body 部位枚举器索引的顶点

然后,在你的触摸方法中,像这样

for (index, bodyPart) in bodyPartData.enumerated()
{
if bodyPart.bezierPath.contains(touchPoint)
{
bodyPartData[index].selected = true // probably need to clear any previous selections
// redraw display
}
}

关于ios - 如何在不重绘的情况下更改 UIBezierPath strokeColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43258574/

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