Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create a app having zoom in/out on image .So anyone say the delegates for zoom.

Thanks in advance,

BrightRaj

share|improve this question

4 Answers

up vote 2 down vote accepted

First Create a ScrollView Then Set the maximumZoomScale and minimumZoomScale. Then return the image by using this delegate

-viewForZoomingInScrollView:

And then use this method

-scrollViewDidEndZooming:withView:atScale:

to do what action you want when zooming.

share|improve this answer

What you are looking for is UIScrollView.

share|improve this answer

Place your image over UIScrollView..

Handle the zoom function using the delegate

– zoomToRect: animated:
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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