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.