gpt4 book ai didi

iphone - 获取 CGContext 绘制的 Arc 中的 Touch point

转载 作者:太空狗 更新时间:2023-10-30 03:55:26 24 4
gpt4 key购买 nike

我用下面的代码画了很多圆弧:

CGContextAddArc(context,
e.x,
e.y,
Distance/2,
M_PI+angle1,
angle1,
aClock);
CGContextStrokePath(context)

现在我希望当我触摸任何拱门时我想检测哪个弧已被触摸

我该怎么做?

最佳答案

你可以这样做:

1.将你的圆弧添加到路径中,

_path = CGPathCreateMutable();
CGPathAddArc(_path, NULL, e.x, e.y, Distance/2, M_PI + angle1, angle1, aClock);
CGContextAddPath(context, _path);
CGContextStrokePath(context);

2.重写touchesBegan:withEvent:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
NSSet *allTouches = [event allTouches];
UITouch *touch = [allTouches anyObject];
CGPoint point = [touch locationInView:[touch view]];

if (CGPathContainsPoint(_path, NULL, point, NO)) {
NSLog(@"point:(%f, %f), Touch arc.", point.x, point.y);
}
else {
NSLog(@"point:(%f, %f), Touch other.", point.x, point.y);
}
}

您会看到“触摸弧”。触摸弧时记录。

关于iphone - 获取 CGContext 绘制的 Arc 中的 Touch point,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10444956/

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