I\'ve a UIScrollView that contains an UIImageView. The UIScrollView lets zooming and panning through the UIImageView.
The problem is that I would like know the fing
Try to use the UIScrollViewDelegate to trace the offset change or zoom scale changes.
- (void)scrollViewDidScroll:(UIScrollView *)scrollView;
- (void)scrollViewDidZoom:(UIScrollView *)scrollView;
Or check the zoomScale value change of UIScrollView between touchesBegan: & (touchesMoved: or touchesCancelled:) events.