0
我只希望左側風景和右側風景僅在iPad上允許,而不是在iPhone上。我應該怎麼做?提前致謝。將設備方向設置爲僅適用於iPad的環境
我只希望左側風景和右側風景僅在iPad上允許,而不是在iPhone上。我應該怎麼做?提前致謝。將設備方向設置爲僅適用於iPad的環境
修改您的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,我在示例項目上嘗試過,它似乎仍然正常工作)。
工作正常!非常感謝! –