Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Touchscreen gestures list and names

Where can I find a list of all (many) touchscreen gestures including complex 4 and 5 finger ones for iPad, with a reasonable technical implementation guidelines and code (C++/Java) examples?

like image 319
Sergey K. Avatar asked Sep 28 '22 21:09

Sergey K.


People also ask

What are considered the 5 basic gestures on iPhone?

Control iPhone and its apps using a few simple gestures—tap, touch and hold, swipe, scroll, and zoom.

What is pinch gesture on iPhone?

Overview. A pinch gesture is a continuous gesture that tracks the distance between the first two fingers that touch the screen. Use the UIPinchGestureRecognizer class to detect pinch gestures. You can attach a gesture recognizer in one of these ways: Programmatically.


1 Answers

After two days of search i have found these links:

http://en.wikipedia.org/wiki/Multi-touch#Multi-touch_gestures - simple gestures

http://blogs.computerworld.com/18672/the_lion_multitouch_gesture_guide - more complex multi-finger gestures on Apple devices

http://medialoot.com/item/40-vector-multitouch-gestures - 40 multitouch gestures

Unfortunately, nothing usable was found in the Apple's patents regarding gestures.

like image 17
Sergey K. Avatar answered Oct 07 '22 08:10

Sergey K.