iPad应用程序方向

时间:2010-08-04 17:51:08

标签: iphone xcode ipad

我最近提交了我的ipad应用程序,因为不支持所有四种方向类型而被拒绝。现在我已将其设置为自动旋转到landscaperight并且不再旋转。如何让它旋转到其他三个方向(或者只是两个方向(因为我不想创建新的xib,除非我必须)。

1 个答案:

答案 0 :(得分:0)

如果您正确设置了自动调整大小的掩码,并且在Info.plist文件中设置了相应的键,则应该能够使用一个xib:

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