你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> IOS6橫屏

IOS6橫屏

編輯:IOS開發綜合

只支持portait,不能旋轉:


-(BOOL)shouldAutorotate

{

    return NO;

}


支持旋轉:

-(BOOL)shouldAutorotate

{

    return YES;

}

-(NSUInteger)supportedInterfaceOrientations{

   

    return UIInterfaceOrientationMaskLandscape; //UIInterfaceOrientationMaskLandscape、UIInterfaceOrientationMaskAll、UIInterfaceOrientationMaskAllButUpsideDown

}


考慮到兼容低版本,最好加上:

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation

{

    return YES;

}


簡單說明:

UIInterfaceOrientationMaskLandscape  支持左右橫屏


UIInterfaceOrientationMaskAll  支持四個方向旋轉


UIInterfaceOrientationMaskAllButUpsideDown 支持除了UpsideDown以外的旋轉

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