如何在 iPhone sdk 中以景观模式启动启动屏幕

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

我正在开发一个仅处于横向模式的应用程序。

在我的应用程序中,我使用启动屏幕图像 (480 X 320)。当我运行 Xcode 时,启动图像仅以纵向模式显示,但视图仅以横向模式显示。

任何人都可以建议如何在横向模式下实现此启动屏幕吗?

I am developing an application which is in Landscape mode Only.

In my application I am using a splash Screen Image (480 X 320). When I am running Xcode the Splash image appears in Portrait mode only but the view is in Landscape mode only.

Can Anyone suggest how to implement this splash Screen in Landscape mode?

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

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

发布评论

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

评论(1

少女情怀诗 2024-11-22 10:10:15

以横向模式启动并将您的 Default.png 设为横向。

来自文档:

如何在横向模式下启动我的应用程序?

以横向模式启动您的应用程序
模式,编辑 Info.plist 文件以添加
UIInterfaceOrientation 键与
适当的值
(UIInterfaceOrientationLandscapeRight
或者
UIInterfaceOrientationLandscapeLeft),
如清单 1 所示。这提供了
提示系统设置
状态栏的方向
在启动时适当地进行。

清单 1:以横向模式启动应用程序

<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string> 

请查看了解更多信息。

Launch in landscape mode and make your Default.png be landscape.

From the docs:

How do I start my application in landscape mode?

To start your application in landscape
mode, edit your Info.plist file to add
the UIInterfaceOrientation key with
the appropriate value
(UIInterfaceOrientationLandscapeRight
or
UIInterfaceOrientationLandscapeLeft),
as shown in Listing 1. This provides a
hint to the system to set the
orientation of the status bar
appropriately at launch time.

Listing 1: Starting your application in landscape mode

<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string> 

Check this for more.

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