I have an image like:
When I load the image to uiimageview and then adding as a subvie
Have a look at the contentMode-Property of UIView (UIImageView also supports this).
imageView.contentMode = UIViewContentModeScaleAspectFit;
This should work...