重写控制器如下方法即可:
1 - (NSUInteger)supportedInterfaceOrientations 2 3 { 4 5 /* 6 7 UIInterfaceOrientationMaskPortrait 8 9 UIInterfaceOrientationMaskLandscapeLeft 10 11 UIInterfaceOrientationMaskLandscapeRight 12 13 UIInterfaceOrientationMaskPortraitUpsideDown 14 15 UIInterfaceOrientationMaskLandscape = (UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight), 16 17 UIInterfaceOrientationMaskAll = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskPortraitUpsideDown), 18 19 UIInterfaceOrientationMaskAllButUpsideDown = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight), 20 21 */ 22 23 return UIInterfaceOrientationMaskLandscape; 24 25 }