iphone - Change the scale factor in UIScrollView -
Is it possible to change the scaling factor of UIScrollView? What do I mean is that I can use the content view to zoom completely to my zoomed-out two-pinches gesture altogether - its maximum value in content view for. For example, the minimum scale of the UIScrollView is 0.32 and the content view will be increased to 0.32 by two pinch gestures.
Thank you.
There is no direct property for this, but I'm sure you do this by UIScrollViewDelegate protocol and by overriding the
viewForZoomingInScrollView:
method, then manually UIScrollView
's zoomScale
Property changes.
Comments
Post a Comment