vote up 0 vote down star
1

In an attempt to create a workaround for centering an image in a UIScrollView and make it behave as Apple's Photos app does, I need to get the current zoom level and use the number to calculate the amount the image should be inset at each zoom level.

(Note: I am aware that some programmers are centering an image in a scrollview by centering the image in a UIView that is the same size as the scrollview. This does not give good results and I am trying to find out how apple made it work in the photos app.)

So, anyone know how to get the current zoom level of the content in a UIScrollView?

flag

1 Answer

vote up 2 vote down check

In OS 3.x, there's a property called "zoomScale" that will give you what you want. In 2.x, I believe you can look directly at the contentView's transform to obtain this (but that is, of course, not 'official'.)

link|flag
I'm trying: NSLog(@"%d", myScrollView.zoomScale); in my scrollViewDidEndZooming method, but it's only getting "0". What am I doing wrong here? I know you can use zoomScale as a setter, but does is also work to get the current zoom scale? – Jonah Sep 20 at 18:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.