2013-04-30 50 views
-1

如何在iPhone和ipad for iOS 6中實現方向?以前的版本顯示shouldrotateinterfaceorientation但最新版本沒有顯示?如何在iPhone和ipad for ios6中實現方向?

iam面向最新版本的方向問題? PLZ幫助我?

+1

您可能會發現[瞭解iOS 6界面方向更改](http://stackoverflow.com/questions/12778636/understanding-ios-6-interface-orientation-change)和[如何使應用程序完全正常工作以進行自動旋轉在iOS 6?](http://stackoverflow.com/questions/12662240/how-to-make-app-fully-working-correctly-for-autorotation-in-ios-6)有用。 – 2013-04-30 12:52:12

+0

我的回答有用嗎?或者您需要更多幫助? – 2013-05-15 16:30:31

回答

0

試試這種方法。在iOS 6中,我們開始使用蒙版。

 - (BOOL) shouldAutorotate 
    { 
    return YES; 
     } 

    -(NSUInteger)supportedInterfaceOrientations 
     { 
     return UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown; 
     } 

您可以從我放置在這裏的內容中選擇所需的旋轉角度,然後移除您不需要的蒙版。祝你好運。