可能重复:
splash screen for Universal application for ipad and iphone
如何保持Default.png有两种尺寸,一种用于ipad,另一种用于iphone?
答案 0 :(得分:8)
您需要为iPad提供正确的名称,例如Default-Landscape.png
等,并将支持的方向添加到Info.plist
文件中。
请参阅http://developer.apple.com/library/ios/#qa/qa2010/qa1588.html
答案 1 :(得分:6)
您可以使用这些文件。
iOS Application Programming Guide - Build-Time Configuration Details
Providing Device-Specific Launch Images
~ipad. The launch image should be loaded on iPad devices only.
~iphone. The launch image should be loaded on iPhone or iPod touch devices only.
答案 2 :(得分:1)
将iPad图像名称保留为“Default-Portrait.png”(768x1024)
iPhone图像名称为“Default.png”(320x480)。
希望它对你有所帮助。
如有任何困难,请告诉我。
干杯。
答案 3 :(得分:0)
找到可能有用的东西
在info.plist中:
<key>UILaunchImageFile</key>
<string>Default</string>
<key>UILaunchImageFile~ipad</key>
<string>Default_iPad</string>
然后你需要2个文件:Default.png(640x960 landscape)和Default_iPad.png(768x1024 landscape)。
有关详细信息,请查看此link