1

- (void) touchesMoved当我进入一个特定的框架时,我习惯于做一些事情,在这种情况下是一个按钮的区域。

我的问题是,我只希望它在我进入框架时做一些事情——而不是当我在框架内移动手指时。

有谁知道我在框架内时如何只调用一次我的方法,如果我在同一个 touchMove 中重新输入它,仍然允许我再次调用它。

谢谢你。

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [[event touchesForView:self.view] anyObject];

    CGPoint location = [touch locationInView:touch.view];

    if(CGRectContainsPoint(p1.frame, location))
    {
            //I only want the below to me called 
            // once while I am inside this frame
        [self pP01];
        [p1 setHighlighted:YES];
    }else {
        [p1 setHighlighted:NO];
    }
}
4

4 回答 4

1

您可以使用某些属性来检查在您进入特定区域时是否已经调用了代码。看起来p1对象的突出显示状态(不确定它是什么)可能适合于此:

if(CGRectContainsPoint(p1.frame, location))
{
   if (!p1.isHighlighted){ // We entered the area but have not run highlighting code yet
        //I only want the below to me called 
        // once while I am inside this frame
      [self pP01];
      [p1 setHighlighted:YES];
   }
}else { // We left the area - so we'll call highlighting code when we enter next time
    [p1 setHighlighted:NO];
}
于 2010-02-10T08:22:04.253 回答
1

Simply add a BOOL你签入 touchesMoved 并在 touchesEnded 中重置

于 2010-02-10T09:03:59.940 回答
1
if( CGRectContainsPoint([p1 frame],[touch locationInView:self.view])) {
   NSLog (@"Touch Moved over p1");
  if (!p14.isHighlighted) {
   [self action: p1];
   p1.highlighted = YES; 
   }
  }else {
   p1.highlighted = NO;
  }
于 2010-08-19T16:49:36.423 回答
0

尝试使用 UIButton 并在 Interface Builder 中使用“触摸拖动输入”连接。

于 2011-07-01T23:13:13.757 回答