To support iOS 7 to 8 on universal devices, I have to make 4 copies of the same image in different size.
For the iPhones [email protected] (iphone 4s,5,5s,6) [email protected] (iphone 6+)
For the iPads image.png (ipad 2, ipad mini 1) [email protected] (ipad 3, 4, ipad mini 2, ipad Air)
The images are really bloating the app size.
Is it ok to just use 1 image size, the largest one of the set and scale to fit in the uiimageview and use the image view to scale down the image on the smaller screens?
imageView.contentMode = UIViewContentModeScaleAspectFit;
or is it absolutely necessary to have all 4 copies at different sizes?
It works on all the devices on the simulator and on a retina iPad 3, but I have no way of actual testing on other devices and am afraid that the images may not display.
Has anyone tried using 1 large image instead of the set of copies?