I have a UIImageView, which I want to be able to resize and rotate etc.

Can a GestureRecognizer be added to the ImageView?

I would want to add a rotate and pinch recognizer to a UIImageView which would be created at runtime.

How does one add these recognizers?

Thanks

link|improve this question

feedback

1 Answer

up vote 62 down vote accepted

Check that userInteractionEnabled is YES on the UIImageView. Then you can add a gesture recognizer.

imageView.userInteractionEnabled = YES;
UIPinchGestureRecognizer *pgr = [[UIPinchGestureRecognizer alloc] 
    initWithTarget:self action:@selector(handlePinch:)];
pgr.delegate = self;
[imageView addGestureRecognizer:pgr];
[pgr release];
:
:
- (void)handlePinch:(UIPinchGestureRecognizer *)pinchGestureRecognizer
{
  //handle pinch...
}
link|improve this answer
Thanks. Will this not resize the image as pinching does, or how would this be handled to resize the image as the pinch gesture is recognized? – Helium3 Oct 11 '10 at 20:28
3  
No, this just shows how to add the gesture recognizers. You have to do the actual zoom/rotate yourself in the gesture handlers. See the sample app Touches_GestureRecognizers on how to do the zoom/rotate. – Anna Karenina Oct 11 '10 at 21:27
Thanks a lot. +1 :P – Helium3 Oct 11 '10 at 21:36
10  
+1 sat here for ages trying to figure out why my gestures wouldn't work.. "Check that userInteractionEnabled is YES on the UIImageView." Thanks! – Critter Apr 11 '11 at 1:12
This definitely made my work easier than trying to set limits on a recognizer set to the overall view. Thanks! – Josh Kovach Aug 4 '11 at 15:36
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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