1

我正在開發box2d遊戲。我的遊戲uiinterfaceOrientation是UIInterfaceOrientationLandscapeLeft,它在ios5.1中工作正常,但ios6.0我正在接口定位問題。我知道 - shouldAutorotateToInterfaceOrientation:在iOS 6.0中已棄用。對於interfaceOrientation,它們爲iPad成語設置了UIInterfaceOrientationMaskAll,併爲iPhone成語設置了UIInterfaceOrientationMaskAllButUpsideDown。我不知道如何使用這個(UIInterfaceOrientationMaskAll)。我需要UIInterfaceOrientationLandscapeLeft中的遊戲。如何解決這個問題,你可以告訴我.. 謝謝..ios6.0中的UIInterfaceOrientation

回答

0

此外,您還應該在Info.plist中的UISupportedInterfaceOrientationsUIInterfaceOrientation屬性中添加UIInterfaceOrientationLandscapeLeft。您還可以通過明確返回來自shouldAutorotate回調的錯誤來防止進一步自動旋轉。