2015-08-29 79 views

回答

1

修改您的info.plist文件,有一個看起來像這樣的條目:

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

更多關於這些密鑰信息可以看出in this Apple documentation,我通過看這個public repo's info.plist file(儘管它的工作了答案iOS 3.2,我在示例項目上嘗試過,它似乎仍然正常工作)。

+0

工作正常!非常感謝! –

相關問題