Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Images for retina display iphone

I have an working application which i have tested in my ipod touch. Everything works pretty fine.

My tabbar icons and splash screen images are in a separate folder in my Resources folder

Resources->images

Now, I know for iPhone4 i need to use 2x images.

My question is for support for iPhone4 all that i need to do is add 2x images in my images folder. For example if my splashscreen image is Default.png, I should add my 2x image as [email protected] in my images folder and iphone will use it automatically.?

Is it the same for all tabbar images ?

Thanks in advance

like image 405
Neelesh Avatar asked May 26 '11 10:05

Neelesh


People also ask

Does iPhone have Retina display?

The Retina display has since expanded to most Apple product lines, such as Apple Watch, iPhone, iPod Touch, iPad, iPad Mini, iPad Air, iPad Pro, MacBook, MacBook Air, MacBook Pro, iMac, and Pro Display XDR, some of which have never had a comparable non-Retina display.

How do you enable Retina display on iPhone?

To check this setting, go to Settings > Accessibility > Display & Text Size, then scroll down and turn on Auto-Brightness. Set your iPhone to turn off the display when you aren't using it.

What does Retina display mean on iPhone?

Retina display is a term coined by Apple that just means that the pixel density on a screen is so high that the naked human eye cannot distinguish individual pixels at a normal viewing distance. It allows the screen to show more detail and improves the viewing experience.


1 Answers

Yes, all that you said is correct. Remember to also import the @2x images into your Xcode project (e.g. by dragging them from Finder to Xcode), so they'll be added to the bundle when you build your app.

like image 149
BoltClock Avatar answered Nov 02 '22 23:11

BoltClock