I am developing an application and I need to recognize diferents(Pinch, Pan and Rotation) gestures at the same time. I'm using UIGesturesRecongizers, so I have a UIPanGestureRecognizer, UIRotationGestureRecognizer and UIPinchGestureRecongizer attached to the same UIView. The problem is that when I run the app and try to test multiple gestures, it doesn't work. The app recognizes either the rotation or the pinch gesture, but not both at the same time. I override the method ShouldRecognizeSimultaneously but still is not working. Do you have any clue about what the problem is?
↧