I have a UIImageView object, attached to a controller. It displays fine. What is a easy way to get zooming and panning with the least amount of code? Perhaps some library out there that does this? Hard to believe the SDK does not provide anything.
Share
Add your UIImageView as a subview of a UIScrollView and make sure you change the
minimumZoomScaleormaximumZoomScale.Also take a look at the documentation for UIScrollView there might be other settings you want to tweak.