What is the difference between touch and touch in iOS

I am confused by the difference between touches and taps like the touchUpInside and one tap events. Are they the same thing?

+6
source share
2 answers

https://developer.apple.com/library/ios/documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/GestureRecognizer_basics/GestureRecognizer_basics.html

A tap is the equivalent of a click, quick tap, and touch (which counts as an ONE event)

the touch can drag on ... you can land, then transfer your finger to the button, and then lifting your finger, lift it up (inside the button).

+13
source

I found that taps are the number of taps for gesture recognition.

Touch is the number of fingers that must be pressed to recognize gestures.

+1
source

Source: https://habr.com/ru/post/909798/


All Articles