3

Hi! My problem is not how to implement multiple custom gesture but how to handle multiple Custom Gestures. I have added a pinch custom gesture on corner points of the view and one finger rotation gesture on the view. For pinch custom gesture on corner points, I've used SPUserResizableView and for one finger custom gesture, I've used KTOneFingerRotationGestureRecognizer. But only one gesture is working. How can I resolve this? I've even tried using SPUserResizableView and default rotation gesture and it's not working. What may be the issue? Thank You.

Guntis Treulands
  • 4,764
  • 2
  • 50
  • 72
Mohan Kishor
  • 59
  • 1
  • 1
  • 6

2 Answers2

0

may this links can help you. Simultaneous gesture recognizers in Iphone SDK

https://stackoverflow.com/questions/3160489/handle-tap-gesture-with-an-argument-iphone-ipad

Check it out it's all about gestures ,you doesn't need to use KTOneFingerRotationGestureRecognizer and SPUserResizableView.

Community
  • 1
  • 1
NiravPatel
  • 3,260
  • 2
  • 21
  • 31
  • Thank You.But what i need is to have only gestures for the corner points of the image only.Thats why i need to use KTOneFingerRotationGestureRecognizer and SPUserResizableView. – Mohan Kishor Oct 30 '12 at 12:36
0

You don't really need to use SPUserResizableView to handle the pinch gesture in the corners. You could probably get away with transparent subviews created programmatically, with the pinch gesture recognizer added to them.

Ben Wyatt
  • 399
  • 4
  • 14
  • Sorry.I can't get you clearly.So could you please give me an example of your previous statement so that it will make me understand better. – Mohan Kishor Oct 31 '12 at 05:37