如何在iphone中以横向模式设置default.png图片?

时间:2011-04-18 09:06:47

标签: iphone objective-c cocoa-touch ios4

我的应用程序的方向是正确的。我想设置default.png图像,它在我的应用程序开始时加载了几秒钟。现在我在我的应用程序中添加了default.png。但它以纵向模式显示我的图像。我该怎么办 ?

1 个答案:

答案 0 :(得分:3)

在iPad中使用Default-Portrait.pngDefault-Landscape.png作为图片名称。

Default.png仅适用于iPhone中两个方向的一张图片

如果你没有

,请在 info.plist 文件中添加以下内容
<key>UISupportedInterfaceOrientations</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationPortraitUpsideDown</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
</array>

查看文章Default.png and landscape mode