适用于 ipad 和 iphone 的 Default.png

发布于 2024-11-15 21:10:04 字数 278 浏览 1 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

难得心□动 2024-11-22 21:10:04

您需要为图像指定正确的名称,例如 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 your Info.plist file.

Please refer to http://developer.apple.com/library/ios/#qa/qa2010/qa1588.html

撑一把青伞 2024-11-22 21:10:04

您可以使用这些文件。

  • 默认~iphone.png
  • 默认@2x
  • ~iphone.png 默认~ipad.png

iOS 应用程序编程指南 - 构建时配置详细信息

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.

You can use these files.

  • Default~iphone.png
  • Default@2x~iphone.png
  • Default~ipad.png

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.
平定天下 2024-11-22 21:10:04

将 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.

猥琐帝 2024-11-22 21:10:04

在 info.plist 中找到了一些可能有用的东西

<key>UILaunchImageFile</key>
<string>Default</string>
<key>UILaunchImageFile~ipad</key>
<string>Default_iPad</string>

那么您需要 2 个文件:Default.png(640x960 横向)和 Default_iPad.png(768x1024 横向)。

有关详细信息,请查看此链接

Found something that could be useful

In info.plist:

<key>UILaunchImageFile</key>
<string>Default</string>
<key>UILaunchImageFile~ipad</key>
<string>Default_iPad</string>

Then you need 2 files: Default.png (640x960 landscape) and Default_iPad.png (768x1024 landscape).

For details check this link

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文