适用于 ipad 和 iphone 的 Default.png
可能的重复:
ipad 和 iphone 通用应用程序的启动屏幕 < /p>
如何保留 Default.png 有两种尺寸,一种用于 ipad,另一种用于 iPhone?
Possible Duplicate:
splash screen for Universal application for ipad and iphone
How to keep Default.png with two sizes one for ipad and another for iphone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要为图像指定正确的名称,例如 iPad 的
Default-Landscape.png
等,并将支持的方向添加到您的Info.plist
文件中。请参考 http://developer.apple.com/library/ios /#qa/qa2010/qa1588.html
You need to give the images the right names, i.e.
Default-Landscape.png
etc. for iPad and add the supported orientations to yourInfo.plist
file.Please refer to http://developer.apple.com/library/ios/#qa/qa2010/qa1588.html
您可以使用这些文件。
iOS 应用程序编程指南 - 构建时配置详细信息
You can use these files.
iOS Application Programming Guide - Build-Time Configuration Details
将 iPad 图像名称保留为“Default-Portrait.png”(768x1024)
,将 iPhone 图像名称保留为“Default.png”(320x480)。
希望对您有所帮助。
如有任何困难请告诉我。
干杯。
Keep the iPad image name as "Default-Portrait.png" (768x1024)
And iPhone image name as "Default.png" (320x480).
Hope it will be helpful to you.
Let me know in case of any difficulty.
Cheers.
在 info.plist 中找到了一些可能有用的东西
:
那么您需要 2 个文件:Default.png(640x960 横向)和 Default_iPad.png(768x1024 横向)。
有关详细信息,请查看此链接
Found something that could be useful
In info.plist:
Then you need 2 files: Default.png (640x960 landscape) and Default_iPad.png (768x1024 landscape).
For details check this link