I am trying to workout how to implement a UIImage
that has pinch/double tap to zoom. Is this possible with a standard UIImageView
?
Looking at other questions at documentation it has to be completed with a UIScrollView
?
The issue I see is that the above link suggests using initWithImage
on the scrollView, but that is not available?
I am looking to implement an Image that is full screen (no larger), if the image is larger it should scale Aspect to Fit into the full screen. The user can then double tap or Pinch to zoom into the image. What is the correct approach for this?