Reputation: 3249
I have added image view as subview in uiview. now i have rotated this image view using transformation. How can i resize the image view after the rotation transformation is applied.
Upvotes: 0
Views: 1257
Reputation: 11174
you shouldn't resize manually, you should be setting the autoresizingMask of the view so that it is automatically resized when the rotation occurs
Upvotes: 1