Чтобы растянуть изображение в пределах UIImageView
, вам просто нужно установить соответствующий contentMode.
Вы можете установить UIImageView в качестве размера экрана и установить режим содержимого следующим образом
3 варианта
// assume iv is an UIImageView the size of screen
// First option stretches your image to the size of the screen
[iv setContentMode:UIViewContentModeScaleToFill];
// Second option scales your image without changing aspect ratio to the largest possible size such that the whole image fits
[iv setContentMode:UIViewContentModeScaleAspectFit];
// Third option scales your image without changing aspect ratio to the smallest possible size such that the screen is covered (potentially clipping some of your image)
[iv setContentMode:UIViewContentModeScaleAspectFill];