I have a view sitting over another view. The top view has a UITapGestureRecognizer so I can close the menus (click outside of the menus). But the layer below this needs to receive all the touches.

I can get single finger gestures to pass through, but I can't get the pinch gesture to pass through.

link|improve this question

75% accept rate
Make sure that multiple touches are enabled in both views. – MSgambel Aug 12 '11 at 18:56
I'm guessing this is a situation where you don't necessarily know the order or amount of layers underneath the top that need to receive actions? Based on a little research it sounds like lots of people have encountered this problem with pinch to zoom... you might have to come up with some other solution/work-around. I'm guessing there is something unique about 2 finger gestures that prevents them from being passed through the view hierarchy. Could be a technical limitation or a bug. – mattacular Aug 12 '11 at 19:11
Multi touch wasn't enabled thanks. Too many late nights. – smcdrc Aug 12 '11 at 20:32
@MSgambel: Add that as an answer, so smcdrc can accept it! – Karoly S Aug 12 '11 at 21:06
feedback

1 Answer

up vote 3 down vote accepted

You need to make sure that multiple touches are enabled in both views. That way, a pinch can be recognized! Hope that helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.