OK, I have a UIScrollView with some pictures in it. Zoom and scroll works fine until I'm zooming in and then rotate. After the rotation zoom has healed, but when I zoom zoom in, if I want them to move more of my pictures, basically, when I zoom after rotation, then the scene becomes smaller than the screen. How can I fix this problem? Any ideas?
I tried _scrollView.clipsToBounds = YES;
but is not working after rotation.
Thanks
Did you set the minimum / maximum zoom scale on UIScrollView Tired? Assuming you have a reference to UIScrollView, you can set a minimum zoom scale. This will ensure that when you zoom out, the picture will not be as small as you want.
scrollView.minimumZoomScale = 1.00;
Comments
Post a Comment