解决方法
您可以使用handleGesture方法.首先,您需要创建一个接收触摸的位置,您必须将其与委托方法中的触摸位置进行比较,如下所示:
CGRect locationRect;
在viewdidload中
locationRect = CGRectMake(CREATE A FRAME HERE);
下一个委托方法
- (void)handleGesture:(UIGestureRecognizer *)gestureRecognizer { CGPoint p = [gestureRecognizer locationInView:self.view]; if (CGRectContainsPoint(locationRect,p)) { NSLog(@"it's inside"); } else { NSLog(@"it's outside"); } }