I want to scale an image after rotating it using CGAffineTransformMakeRotation.
When I simply pass the imageview in viewForZoomingInScrollView, scaling does not work once I have rotated my image.
Any ideas?Thanks.
I want to scale an image after rotating it using CGAffineTransformMakeRotation. When I simply
Share
You can put the image view within a
UIViewinstance and then rotate that instance usingCGAffineTransformMakeRotation. I had an image view as a subview of a scroll view. Then I did this,Return the
imageViewas the view for zooming. It should work.