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

link|improve this question
1  
I think that is the best way to do it. Not sloppy at all. You could create your own subclass of UIGestureRecognizer if you wanted to make it cleaner and reusable. – EricS Sep 18 '11 at 23:51
Alright thanks! Ill just stick with that. – 8BitAce Sep 20 '11 at 21:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.