0

我已经动态创建了一些图像视图。通过使用 UISwipeGestureRecognizer,我能够从滑动开始的位置获取图像视图的起点或标记,但我无法获取其结束标记或点。

请帮忙

提前致谢。

4

1 回答 1

0

您可以使用 touchesBegan、touchesMoved 和 touchesEnded 方法来查找滑动的开始/结束位置。

使用以下可能对您有帮助的方法...

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
     UITouch *touchendpoint = [touches anyObject];
    CGPoint gestureEndPoint = [touchendpoint locationInView:self.view];
 }

希望对你有帮助..

于 2012-05-05T06:42:35.540 回答