I have an UIView (v1):
---------------
| --------- |
| | | |
| | | |
| | | |
| | UIImage | |
| | View | |
| ----
Turn off "Autoresize Subviews"
on your UIView v1
attributes in the XIB file.
By default this is checked.
This works for your app above. Alternatively, if you wanted some children to auto-resize and some not, then on each child you can disable the auto-size height/width (the red arrows within the "Auto-sizing" box.
Your UIImageView will then stop resizing.