ipad default-landscape不显示

时间:2010-05-18 11:03:13

标签: ipad screen-orientation

我添加了两张图片。 Default-Portrait.png和Default-Landscape.png。但每当我启动我的应用程序时,无论方向如何,都只显示纵向默认图像。

为什么会这样?

2 个答案:

答案 0 :(得分:13)

我有同样的问题并通过将以下内容添加到Info.plist文件(来自Xcode)来解决它:

<key>UISupportedInterfaceOrientations</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationPortraitUpsideDown</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
</array>

答案 1 :(得分:-7)

您是否添加了基于方向更换图像的代码?我猜这个应用程序只是不知道你想要什么图片,除非你告诉它。

UIInterfaceOrientation param