up vote 30 down vote favorite
23
share [g+] share [fb]

I am create an universal application using iphone sdk3.2. i want to know for ipad and iphone do i need different default.png of different size.

link|improve this question

50% accept rate
2  
I'm really wondering! Is there any reason that you haven't accepted a answer which got 52 up vote(Dec 17,11)? – Walid Hossain Dec 18 '11 at 14:43
feedback

5 Answers

Yes. In iPhone/iPad development the default.png file is displayed by the device automatically so you don't have to program it which is really useful. I don't have it with me, but you need different pngs for the iPad which specific names. I googled up iPad and default png and got this info from the phunkwerks site:


iPad Launch Image Orientations

To deal with various orientation options, a new naming convention has been created for iPad launch images. The screen size of the iPad is 768×1024, notice in the dimensions that follow the height takes into account a 20 pixel status bar.

Filename Dimensions
Default-Portrait.png * 768w x 1004h
Default-PortraitUpsideDown.png 768w x 1004h
Default-Landscape.png ** 1024w x 748h
Default-LandscapeLeft.png 1024w x 748h
Default-LandscapeRight.png 1024w x 748h
Default.png Not recommended

  • If you have not specified a Default-PortraitUpsideDown.png file, this file will take precedence.

** If you have not specified a Default-LandscapeLet.png or Default-LandscapeRight.png image file, this file will take precedence.

link|improve this answer
Thanks a lot for help – a111 Apr 14 '10 at 5:00
9  
Note that the Default.png is what's used for the iPhone when running the universal application on that device, so it needs to be your standard 320 x 480 or 320 x 460 image. The "not recommended" is only for iPad-only applications. – Brad Larson Apr 14 '10 at 12:50
1  
Thanks! I'm now using a Default-Portrait.png with 768w x 1024h this size seems to work too. – powtac May 11 '10 at 16:13
1  
My app will by default works in Landscape mode. But how can I specify landscape default image for iPhone? – Satyam svv Dec 8 '10 at 9:16
1  
It's worth to note that if you're using localized versions, you need to remove these files from your root folder and put them into your <language>.lproj directory. – muanis Oct 24 '11 at 4:24
feedback

You can make them 1024 x 768. You can also check "Status bar is initially hidden" in the plist file.

link|improve this answer
feedback

With universal app I had iPad splash screen showing up in simulator but not on device. The iPad would instead show the Default.png splash for the iPhone. The Default-Landscape.png and Default-Portrait.png files existing, so wth? Resolution should be correct since I created the screen captures using Window | Organizer | Screenshots and used 'Save as Default Image' for the iPad, then just renamed it.

Turns out (from my one app anyways) the two iPad screen shots have to be moved to the Resources-iPad directory. Then it all works fine. Seems obvious now, but in case anyone else has lost sleep over this... -Larry

link|improve this answer
feedback

Maybe I'm retarded but the image size is 1024x768 or 768x1024 respectively.. isn't it?

link|improve this answer
on iPad image size for splash screens (or launch images as apple calls them) is 768 x 1004 pixels (portrait) or 1024 x 748 pixels (landscape) according to developer.apple.com/iphone/library/documentation/iPhone/… – NesReqSej Sep 6 '10 at 14:00
3  
The reason for the 20 pixel discrepancy is due to the height of the status bar at the top of the screen. – jowie Oct 29 '10 at 9:28
feedback

@LDAnberger: I suppose you didn't exclude your default.png from your iPad target membership (the checkmark at the left hand side of the groups and files? Which I think you should.

Great info in this thread by the way, thanks. The same info must be somewhere on apples's pages but can't find it. Most documentation/information I get is from sites like this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.