Trying to detect a double tap in a specific input field? Any hints…
Using iOSKit https://github.com/kingj5/iOSKit
You need to implement UITapGestureRecognizer
If by double tap you mean two fingers, set the numberOfTouchesRequired
If by double tap you mean like a double click, set the numberOfTapsRequired
Thanks looks interesting.
Is there example of implementing code?