For a six second long press, use a UILongPressGestureRecognizer
with its minimumPressDuration
property set to 6.
Write your own gesture recognizer (say, LongTappingGestureRecognizer
) for continuous tapping for a given period; it shouldn't be too tricky. Give it a property like UILongPressGestureRecognizer
's minimumPressDuration
(say, minimumTappingDuration
) and a property (say, maximumLiftTime
) that determines how long a finger can be lifted off before it's not considered to be a long tapping gesture.
- When it first receives
touchesBegan:withEvent:
, record the time.
- When it receives
touchesEnded:withEvent:
, start an NSTimer
(the lift timer) that sends the gesture recognizer a cancel message (e.g. cancelRecognition
) after maximumLiftTime
.
- When it receives
touchesBegan:withEvent:
when there's a start time, cancel the lift timer (if any).
- The
cancelRecognition
will transition to the failed state.
There are various strategies for handling recognizing when the end of the gesture is reached, after minimumTappingDuration
. One is to check in both the touchesBegan:withEvent:
and touchesEnded:withEvent:
handlers if the difference between the current time and the start time is >= minimumTappingDuration
. The problem with this is that it will take longer than minimumTappingDuration
to recognize the gesture if the user is tapping slowly and hir finger is down when the minimumTappingDuration
is reached. Another approach is to start another NSTimer (the recognition timer) when the first touchesBegan:withEvent:
is received, one that will cause transition to the recognized state and that is cancelled in cancelRecognition
. The tricky thing here is what to do if the finger is lifted when the timer fires. The best approach might be a combination of the two, ignoring the recognition timer if the finger is lifted.
There's more to the details, but that's the gist. Basically, it's a long press recognizer that lets the user lift hir finger off the screen for brief periods. You could potentially use just the tapping recognizer and skip the long press recognizer.