Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tab bar icons on retina display

I am making an iPhone App but I can't understand why my custom tab bar icons are pixelated. They are 30x30. If I change the resolution to 60x60, for example, the icons are still pixelated but they are also incomplete.

Can you help me to fix this problem? Thank you very much.

like image 362
CrazySoftware Avatar asked Mar 13 '13 16:03

CrazySoftware


1 Answers

You don't need to double the size of your non-retina images.
You need to create two separate icons icon.png (30x30) and [email protected] (60x60).
iOS will automatically load the right file based on the screen scale.
You can find more information about taking advantage of the retina display at this url: https://developer.apple.com/resources/high-resolution/

like image 122
s1m0n Avatar answered Nov 15 '22 20:11

s1m0n