UIImageView does not offer this function, although UIImage has an undocumented method _imageScaledToSize:interpolationQuality: if I remember correctly.
Since UIImageView draws directly on the display, subclassing and overriding drawRect: not an option (thanks to Prody for pointing this out). The only option I see is to create a custom subclass of UIView with a custom implementation of drawRect:
source share