Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to add zooming (using pinch gesture) and touch (using tapGesture) in UIImageView without using scrollView? Is it possible? I have used both UIImageView and UIScrollView.This is my code placed on viewDidLoad.

    [scrollView addSubview:imgView];
    scrollView.minimumZoomScale = 1.0;
    scrollView.maximumZoomScale = 12.0;
    scrollView.delegate = self;

    [scrollView setZoomScale:scrollView.userInteractionEnabled];
    [[self view] addSubview:imgView];

    [scrollView bringSubviewToFront:self.view];



//gesture recognizer
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleGesture:)];
    [imgView addGestureRecognizer:tap];

If I try this code.Works fine with Tap but zooming doesn't work because Imageview hides scrollview.Is there any idea, How to add both zooming and touch functionality on UIImageview?

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

it is possible to add both zooming and tap gestures on uiimage view just see this code i have found on net this will help you with what you need. Enjoy Codding ;)

share|improve this answer
It works fine for me. Thanks – Gajendra K Chauhan Apr 30 '12 at 9:19
u r welcomed @GajendraKChauhan – Wolvorin Apr 30 '12 at 9:20
@Alok.I have one more issue.Issue is that I have UIViews (like a GRID) in my app. When I ZoomIn ImageView,grid will also zoomed in. I don't want that. I mean when I zoom ImageView, SubViews should not be zoom. Any Idea..? – Gajendra K Chauhan May 11 '12 at 13:16
for that i think you have to apply all zooming effects on the imageView only i mean connect gestures to the imageview only – Wolvorin May 11 '12 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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