Reputation: 1973
I am able to apply panzoom effect to one uiimageview using uiscrollview. How can I apply panzoom effect to multiple uiimageviews in a single scrollview?
Upvotes: 1
Views: 290
Reputation: 1983
Here is the link which explains how to zoom, rotate & move multiple image.
Upvotes: 1
Reputation: 4138
I am not sure whether this can solve your problem, but if you can make a separate class (inheriting UIView) which displays single image. That class should be able to handle zooming functionality. and then in your class creates multiple objects of this class.
I hope this will solve your problem.
Of course, memory utilization could be the issue if not properly handled.
Upvotes: 0