飞溅图像为iPad应用程序提供侧身

时间:2011-01-13 10:43:00

标签: iphone xcode

我有一个仅支持横向模式的iPad应用程序(仅用于我正在进行的演示),最终它将支持两者。我希望我的应用程序以横向模式启动并显示我的启动图像。该应用程序在横向模式下正确启动,但我的图像显示为向左旋转。图像文件处于横向模式,因此我无法理解它为什么这样做。有什么想法吗?

这是我的plist:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>English</string>
    <key>CFBundleDisplayName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundleExecutable</key>
    <string>${EXECUTABLE_NAME}</string>
    <key>CFBundleIconFile</key>
    <string></string>
    <key>CFBundleIdentifier</key>
    <string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>UILaunchImageFile</key>
    <string>welcome.png</string>
    <key>UIInterfaceOrientation</key>
    <string>UIInterfaceOrientationLandscapeRight</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>1.0</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>NSMainNibFile</key>
    <string>MainWindow</string>
    <key>UISupportedInterfaceOrientations~ipad</key>
    <array>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>SignerIdentity</key>
    <string>Apple iPhone OS Application Signing</string>
</dict>
</plist>

1 个答案:

答案 0 :(得分:1)

我在Info.plist上没有使用任何UILaunchImageFile和UIInterfaceOrientation键(我没有指向任何Default.png文件,我只是投入正确命名的projet文件)。

我只使用 UISupportedInterfaceOrientations~ipad ,然后只在我的项目中包含以下文件:

默认-LandscapeLeft.png 默认LandscapeRight.png 默认Portrait.png 默认-PortraitUpsideDown.png

在你的情况下,只需使用“Default-LandscapeLeft.png”和“Default-LandscapeRight.png”,你应该没问题。 Info.plist中与图形相关的唯一内容是:

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