Reputation: 1
Do I need to make a 2xpng for all images used in my ios app or just for my icon and launch images. I have put all images in my supporting files folder.
Upvotes: 0
Views: 50
Reputation: 318954
You should create a @2x
image for any image that you don't want to appear pixelated when your app is used on a retina device. If an image looks the same either way then you don't need a @2x
version of that image. Very few icons and no images work this way.
Basically you need both sizes of every image in your app otherwise they won't look right.
Upvotes: 1
Reputation: 9143
No, it is not necessary to create all image to 2xpng, 2xpng used when you are using retina display divice, but icon launch image and background will be in 2xpng format.
Upvotes: 0