Apple wants me to fix my interface with retina display/regular display. With the same picture 320×480 the picture looks the same on iOS simulator for both retina and regular as background. But when I do 960×640 for retina and 320×480 for regular, retina looks lilke it is all zoomed in. What am I missing here lol. Is it because it is background layer?
Apple wants me to fix my interface with retina display/regular display. With the same
Share
If you’re using a UIImageView for your background then you probably need to change the contentMode setting to UIViewContentModeScaleAspectFit or UIViewContentModeScaleAspectFill so that the image is properly scaled inside the bounds of the UIImageView.