Is there a systematic way to ignore touches until they have moved a preset distance?
For example, lets say I had a view that I wanted to have moved with a touch and drag. However I only want the view to begin moving after the touches have moved a predetermined distance.
I figured I could simply record the first touch position with touchesBegan and then find the distance between that position and the current touch position, but I feel that would be a little sloppy.
Thanks