I am trying to add 2 UITapGestureRecognizers to a view, one for single tap and one for double tap events. The single tap recognizer is working as expected (on its own). But I don't seem to be able to get the double tap recognizer working.
Have tried to experiment with properties like : cancelsTouchesInView, delaysTouchesBegan and delaysTouchesEnded but still doesn't work.
When I double tap, the single tap recognizer would always be activated and the double tap event would also be sent to the super view. But the custom double tap recognizer does not seem to be notified at all.
Documentations seem to suggest that the 3 properties mentioned above could be used for the purpose. But I am just not sure what values should be set and on which recognizer(s) (single, double or both). Hope somebody familiar with this could help.
The following is the latest updated code block.
Also, cryptic variable names have been made more descriptive except "u_buttons_view" (as requested). The "u" stands for "upper". (Cannot change it easily because it's being referenced from other places.)
// ****** gesture recognizers ******
{ // single tap
UITapGestureRecognizer *single_tap_recognizer;
single_tap_recognizer = [[[UITapGestureRecognizer alloc]
initWithTarget : table_view_controller
action : @selector(upper_button_view_tapped:)]
autorelease];
[single_tap_recognizer setNumberOfTouchesRequired : 1];
[u_buttons_view addGestureRecognizer : single_tap_recognizer];
// double tap
UITapGestureRecognizer *double_tap_recognizer;
double_tap_recognizer = [[[UITapGestureRecognizer alloc]
initWithTarget : table_view_controller
action : @selector
(upper_button_view_double_tapped:)]
autorelease];
[double_tap_recognizer setNumberOfTouchesRequired : 2];
[single_tap_recognizer requireGestureRecognizerToFail : double_tap_recognizer];
[u_buttons_view addGestureRecognizer : double_tap_recognizer];
}
