I am scaling an image in a UIScrollView. On iPhone 4S with iOS 7, its operation does not work. But it works fine on iOS 8. Even in the simulator, it works fine on 4 with iOS 8. Any idea?
So I am returning the view in the delegate method as shown below,
#pragma mark UIScrollViewDelegate method
- (UIView *) viewForZoomingInScrollView:(UIScrollView *)scrollView
{
return pictureView;
}
The hierarchy is used below
- UIScrollView
- UIView (exit as PictureView)
source
share