你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS中控制器的方向

iOS中控制器的方向

編輯:IOS開發綜合

#import "LKNavigationController.h"

 

@interface LKNavigationController ()

 

@end

 

@implementation LKNavigationController

#pragma mark - 實現這個方法來控制屏幕方向

/**

* 控制當前控制器支持哪些方向

* 返回值是UIInterfaceOrientationMask*

*/

-(NSUInteger)supportedInterfaceOrientations

{

/**

* UIInterfaceOrientationMaskPortrait : 豎屏(正常)

* UIInterfaceOrientationMaskPortraitUpsideDown : 豎屏(上下顛倒)

* UIInterfaceOrientationMaskLandscapeLeft : 橫屏向左

* UIInterfaceOrientationMaskLandscapeRight : 橫屏向右

* UIInterfaceOrientationMaskLandscape : 橫屏(橫屏向左\橫屏向右)

* UIInterfaceOrientationMaskAll : 全部方向(包括上面的所有情況)

*/

return UIInterfaceOrientationMaskPortrait;

}


  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved