ios - 如何在不重绘的情况下更改 UIBezierPath strokeColor
<p><p>我使用 beziercurves 创建了一个 body 图像图。</p>
<p>在我的 customView 中,我为每个 body 部位创建了大约 62 个 bezierpath!最初所有这些都设置为默认颜色。当用户触摸这些路径中的任何一个时,我正在尝试更改它们的笔触颜色。</p>
<p> <a href="/image/Ymgm8.png" rel="noreferrer noopener nofollow"><img src="/image/Ymgm8.png" alt="enter image description here"/></a> </p>
<p>一种方法是为每个 bezierPath 声明一个 bool 变量,并相应地切换它们。但我认为这很难实现。声明 62 个额外的 bool 变量并管理它们。</p>
<p>这是我想要做的:</p>
<p>声明贝塞尔属性:</p>
<pre><code>@property (strong,nonatomic) UIBezierPath * rightEyePath;
@property (strong,nonatomic) UIBezierPath * leftEyePath;
@property (strong,nonatomic) UIBezierPath * nosePath;
@property (strong,nonatomic) UIBezierPath * mouthPath;
.... so on
</code></pre>
<p>并在drawRect中绘制它们:</p>
<pre><code> _leftEyePath = ;
;
;
;
;
_leftEyePath.lineWidth = 0.5;
;
</code></pre>
<p>在 touchesMove 方法中,我正在尝试更改贝塞尔笔画颜色:</p>
<pre><code>if ()
{
;
_rightEyePath.lineWidth = 0.5;
;
}
</code></pre>
<p>它不起作用,因为我没有调用 setNeedsDisplay 来重绘贝塞尔曲线。 </p>
<p>如何在没有声明 62 个 bool 变量的情况下为这 62 个贝塞尔曲线在 drawRect 中传递不同的颜色。 </p>
<p>我正在寻找完成任务的有效方法。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我知道你要的是 Objective-C,但这里有一个伪代码 swift 示例说明我的意思</p>
<p>设置您需要的枚举器</p>
<pre><code>enum BodyPartEnumerator : Int {
case _rightEyePath = 0
case _leftEyePath = 1
// and all the rest...
}
</code></pre>
<p>然后定义你需要的数据结构</p>
<pre><code>struct BodyPartData {
var bodyPartIndex : Int
var bezierPath : UIBezierPath
var selected : Bool
}
</code></pre>
<p>为 body 部位定义一个数组</p>
<pre><code>var bodyPartData : = []
</code></pre>
<p>然后 - 对每个 body 部位进行硬编码(就像您目前所做的那样),或者(更好地)从数据文件中加载点。您可以只存储由 body 部分枚举器索引的顶点</p>
<p>然后,在你的触摸方法中,像这样</p>
<pre><code>for (index, bodyPart) in bodyPartData.enumerated()
{
if bodyPart.bezierPath.contains(touchPoint)
{
bodyPartData.selected = true // probably need to clear any previous selections
// redraw display
}
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何在不重绘的情况下更改 UIBezierPath strokeColor,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/43258574/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/43258574/
</a>
</p>
页:
[1]