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?
feedback
|
|
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. 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.
| |||
|
feedback
|
|
You can only do it a standard way: remember the touch point of touchBegin and compare the point from touchEnd. | |||
|
feedback
|