UISwipeGestureRecognizer结束点

时间:2012-05-05 06:39:02

标签: iphone objective-c ios

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

请帮忙

提前致谢。

1 个答案:

答案 0 :(得分:0)

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

使用以下方法可以帮助您......

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

希望,这会对你有帮助..