The iPhone platform has a number of common gesture idioms. For example, there are taps, pinches, and swipes, each with varying number of fingers. But when you're developing an app, it's up to you to implement these things based on low-level information about the number and locations of touches. It seems like this is a prime candidate for a library. You would register a delegate, set some parameters like multi-tap interval and swipe threshold, and get calls like swipeStarted/Ended, pinchStarted/Ended, multiTap, etc. Does such a library exist?

link|improve this question

I have enough to do without having to learn yet another stupid code repository. Github is crap. – user382315 Jan 13 '11 at 15:33
feedback

4 Answers

up vote 6 down vote accepted

I've set up just such a project. It's not a library, but it is full of sample code for pinch/stretch, tap and hold, etc.

Blog:

http://6tringle.com/blog/2009/TouchSampleCode.html

Github:

http://github.com/kailoa/6tringle-touchsamplecode/tree/master

link|improve this answer
Not exactly what I had in mind, but perhaps just as good. Thanks! – n8gray May 25 '09 at 21:35
Good example, but not a library. I forked the project and attempted to create a library. github.com/bentford/GestureDetect – bentford Apr 11 '10 at 21:34
feedback

Here is one for detecting the circle gesture, with the source code provided. Might be useful for adapting it to detect other geatures.

http://iphonedevelopment.blogspot.com/2009/04/detecting-circle-gesture.html

link|improve this answer
feedback

UIGestureRecognizer. Don’t roll your own.

link|improve this answer
I'd say this is the correct answer if you don't have to support iOS 3.1.x, but for now quite a few of us do. – n8gray Jul 9 '10 at 23:41
feedback

I forked Kailoa's very nice example and attempted to create a library.

http://github.com/bentford/GestureDetect

I intend to add a combination "pinch-zoom and drag" gesture like the one in the maps app. Once I get it working, I'll post on github.

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.