当我的手指离开子视图时,我的程序如何忽略touchesMoved?

时间:2013-05-29 00:28:38

标签: ios xcode

我目前有一个带有viewcontroller和子视图的程序。子视图中包含所有触摸逻辑。当我将手指滑到子视图之外时,touchesMoved方法不会停止处理我的触摸信息。我知道touchesMoved方法不会结束,直到我将手指从屏幕上移开,但是必须有一种方法让我的程序在手指离开子视图后忽略触摸。有人知道任何可以做到这一点的方法吗?

1 个答案:

答案 0 :(得分:2)

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    CGPoint location = [[touches anyObject] locationInView:yourSubview];
    if (CGRectContainsPoint(yourSubview.frame, location))
    {
        //process touch
    }
    else
    {
        //touch is outside of the subview
    }
}