I want that when the user has two fingers touching the screen, two separate UILongPressGestureRecognizers recognize the gesture for each finger (1 recognizer for 1 finger). I could use a single UILongPressGestureRecognizer with numberOfTouchesRequired set to 2, but I need the 2 touches to be recognized independently (ex: I can release one finger and the other recognizer will remain active, which is not possible with a single gesture recognizer).
Thanks for your help.