Clancey / FlyoutNavigation

Other
95 stars 87 forks source link

Gesture Issue With Google Maps #36

Closed CodeMonkeyThe2nd closed 11 years ago

CodeMonkeyThe2nd commented 11 years ago

When using google maps on a ViewController which uses the component the Slide out gesture of the component seems to disable any touch events reaching the map. This is only happening in IOS7, removing the GestureRecognizer from the Flyout view fixes the issue.

r-icarus commented 11 years ago

I have the same issue. How do you remove the gesture recognizer?

Clancey commented 11 years ago

There is an event ShouldReceiveTouch. Return false if its a map view Or any view you don't want the swipe to interfere with.

James Clancey

On Saturday, September 21, 2013 at 12:14 PM, rgechavarria wrote:

I have the same issue. How do you remove the gesture recognizer?

— Reply to this email directly or view it on GitHub (https://github.com/Clancey/FlyoutNavigation/issues/36#issuecomment-24868793).

CodeMonkeyThe2nd commented 11 years ago

Cheers Clancey, had not seen this event.