仅在 iPad 上以纵向模式启动图像(仅限设备)

发布于 2024-12-06 11:12:32 字数 348 浏览 0 评论 0原文

我编写了一个 iPad 应用程序,并使用两个不同的图像作为启动图像。 iOS 模拟器在启动期间显示正确的图像,但设备始终使用纵向图像。我有正确的文件大小(Xcode 没有给我任何警告)!

我正在使用 iOS5 Beta 7 和 Xcode 4.2

这是我到目前为止所做的:

  • 我仔细检查了所有文件大小,
  • 我将文件读入项目,
  • 我从头开始构建项目(包括“清理”),
  • 我清理了工作区的派生文件数据目录。
  • 我从设备中完全删除了该应用程序。
  • 我重新启动了设备。

我已经没有主意了。

有什么想法吗?

I wrote an iPad app and I'm using two different images as launch images.
The iOS simulator shows the proper image during startup but the device always uses the portrait image. I have the right file size (Xcode does NOT give me any warnings)!

I'm using iOS5 Beta 7 with Xcode 4.2

Here is what I did so far:

  • I double checked all the file sizes
  • I readded the files to the project,
  • I build the project from scratch (including 'Clean')
  • I cleaned the workspace's derived data directory.
  • I deleted the app completely from the device.
  • I restarted the device.

I'm running out of ideas.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

空‖城人不在 2024-12-13 11:12:32

在 iOS 3.2 及更高版本中,iPad 应用程序可以提供其启动图像的横向和纵向版本。每个特定于方向的启动图像必须在其文件名中包含特殊的修饰符字符串。特定于方向的启动图像文件名的格式如下:

basename_usage_specific_modifiers_scale_modifier_device_modifier.png

应用程序启动图像。

In iOS 3.2 and later, an iPad application can provide both landscape and portrait versions of its launch images. Each orientation-specific launch image must include a special modifier string in its filename. The format for orientation-specific launch image filenames is as follows:

basename_usage_specific_modifiers_scale_modifier_device_modifier.png

Application Launch Images.

羞稚 2024-12-13 11:12:32

我解决了。我找不到任何错误。因此,我根据启动图像从项目中删除了所有内容(包括 info.plist 中的条目),删除了派生工作区文件夹,从设备中删除了应用程序。再次插入图片并在 info.plist 中设置图像的基本名称。它起作用了。还是不知道为什么。

顺便说一句:Xcode 4.2(和 iOS5)似乎改变了 iPad 启动图像的大小。

iOS< 5:纵向 768x1004px 横向:1024x748px (来源)

iOS = 5:纵向 768x1024px 横向:1024x768px(来源:图片)

在此处输入图像描述

I solved it. I couldnt find any mistakes. So I removed everything according the launchimage from the project (including entries in info.plist), deleted the derived workspace folder, deleted the app from the device. Inserted the pictures again an set the basename for the image in info.plist. It worked. still don't know why.

Btw: It seems like Xcode 4.2 (and iOS5) changes the sizes of the launch images for the iPad.

iOS < 5: Portrait 768x1004px Landscape: 1024x748px (Source)

iOS = 5: Portrait 768x1024px Landscape: 1024x768px (Source: Image)

enter image description here

剑心龙吟 2024-12-13 11:12:32

我这样做了:

  1. 将图像重命名为 Default-Landscape~ipad.png
  2. 在 Info.plist 中将其注册为

块引用

<key>UILaunchImageFile~ipad</key>
<string>${PRODUCT_NAME}/Default.png</string>

块引用

,它似乎有效......

I did this:

  1. Rename image to Default-Landscape~ipad.png
  2. In Info.plist register it as

Blockquote

<key>UILaunchImageFile~ipad</key>
<string>${PRODUCT_NAME}/Default.png</string>

Blockquote

and it seems to work...

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