2014-02-10 56 views
0

我想知道如何在iOS 5.1.1的應用程序中禁用縱向和上傾方向。 我希望我的應用程序僅使用LandScape方向(界面在Interface Build中以.xib文件形式繪製),並且在旋轉的情況下不要更改它。
我特別需要iOS 5.1.1如何禁用旋轉後iOS 5.1.1中的方向改變?

回答

1

類似的問題:how do you make an app ONLY support landscape?

在應答使用上述這種方法:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 
    if (interfaceOrientation==UIInterfaceOrientationLandscapeLeft || interfaceOrientation==UIInterfaceOrientationLandscapeRight) 
     return YES; 

    return NO; 
} 
0

您可以在項目設置中進行設置。在xCode 5中,您可以打開項目導航器,單擊您的項目,單擊常規選項卡,然後選中您想要的框。