Any idea if there is a way to get the length of a swipe gesture or the touches so that i can calculate the distance?

link|improve this question
I think you can only get direction from UISwipeGestureRecognizer. Maybe you can get the position where the touch begin and where it ends and calculate the lengh from that. – picknick Jan 28 '11 at 14:17
feedback

2 Answers

up vote 12 down vote accepted

It's impossible to get a distance from a swipe gesture, because the SwipeGesture triggers the method where you could access the location exactly one time, when the gesture has ended.
Maybe you want to use a UIPanGestureRecognizer.

If it possible for you to use pan gesture you would save the starting point of the pan, and if the pan has ended calculate the distance.

- (void)panGesture:(UIPanGestureRecognizer *)sender {
    if (sender.state == UIGestureRecognizerStateBegan) {
        startLocation = [sender locationInView:self.view];
    }
    else if (sender.state == UIGestureRecognizerStateEnded) {
        CGPoint stopLocation = [sender locationInView:self.view];
        CGFloat dx = stopLocation.x - startLocation.x;
        CGFloat dy = stopLocation.y - startLocation.y;
        CGFloat distance = sqrt(dx*dx + dy*dy );
        NSLog(@"Distance: %f", distance);
    }
}
link|improve this answer
Thanks a lot for the idea! – Tomo Jan 29 '11 at 10:26
feedback

You can only do it a standard way: remember the touch point of touchBegin and compare the point from touchEnd.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.