gpt4 book ai didi

objective-c - 如何检测哪个CALayer被点击?

转载 作者:行者123 更新时间:2023-12-03 17:48:33 25 4
gpt4 key购买 nike

我在检测哪个 CALayer 被单击时遇到问题,因为这些 CALayer 有一个恒定的 CABasicAnimation 来移动 x 和 y 位置。

我当前的代码如下:

-(void)mouseUp:(NSEvent *)theEvent
{
CGPoint pointInView = NSPointToCGPoint([self convertPoint:[theEvent locationInWindow]fromView:nil]);
CALayer* clickedOn = [(CALayer*) self.layer hitTest:[self.layer convertPoint:pointInView toLayer:self.layer.superlayer]];
int selectedContact = -1;
for (int i = 0; i < [contactLayers count]; i++) {
CALayer* presentationLayer = [contactLayers[i] presentationLayer];
if (presentationLayer == clickedOn) {
selectedContact = i;
break;
}
}

if(selectedContact == -1)
return; //no contact selected;

CALayer* selectedContactLayer = contactLayers[selectedContact];
[selectedContactLayer removeFromSuperlayer];
}

contactLayers 是一个 NSMutableArray,包含用户可以点击的所有可能的 CALayers。

每次运行时,i 似乎总是以 -1 结束。我正在使用 presentationLayer 因为 CALayers 已应用了 CABasicAnimation。我还尝试了 modelLayer,但这仅在您单击每层的初始位置时才有效。

简单回顾一下:我有一个 CALayers 的 NSMutableArray,它们都应用了 CABasicAnimation,这个数组称为 contactLayers。当用户单击某个图层时,我需要通过将索引设置为数组中的适当值来了解他们单击的是哪个图层。

最佳答案

通过 HitTest “self.layer.presentationLayer”而不是“self.layer”来计算“clickedOn”

关于objective-c - 如何检测哪个CALayer被点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38320656/

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