Hi,
I'm trying to find a good way to make a tap show/hide my menus, in the same way as iBooks. I set up UITapGestureRecognizer to do this, but unfortunately it means then that none of the buttons on the screen work. I know I can use
tapRecognizer.cancelsTouchesInView = NO;
in order to allow the touches to go through, but then of course, both things happen and I can't cancel the menu show/hide.
Is there a way for me to stop the UITapGestureRecognizer from happening on certain buttons or actions? Or is there a better way of doing this in general?
Thanks very much in advance for any help you can give me!
:-Joe