Reputation: 586
I've added launch images for the iPad retina display. I use the required sizes.
When the app is run on the simulator, the launch images look fine. When run on actual devices (tested 2 devices, both New iPad (3rd generation)), only the top half of the image shows up, the bottom half of the screen is black.
Once the launch image is dismissed, everything is displayed properly.
If I assign the smaller (non-Retina) launch images, they display properly (though the image is not crisp, obviously).
Any thoughts?
Note: these are 2.4 MB png files.
Thanks for any help!
Upvotes: 1
Views: 748
Reputation: 586
Apparently the image files were corrupted. Oddly, they opened fine in Preview and Safari, but not in the app for some reason. Anyway, I recreated the images, and all was well.
Upvotes: 0
Reputation: 13458
You need image assets for both retina and non-retina, landscape and portrait. Use this naming convention:
Default-Landscape~ipad.png, Default-Landscape@2x~ipad.png, Default-Portrait~ipad.png, Default-Portrait@2x~ipad.png
the @2x images are at retina resolution
Upvotes: 2