#import "LKNavigationController.h"
@interface LKNavigationController ()
@end
@implementation LKNavigationController
#pragma mark - 實現這個方法來控制屏幕方向
/**
* 控制當前控制器支持哪些方向
* 返回值是UIInterfaceOrientationMask*
*/
-(NSUInteger)supportedInterfaceOrientations
{
/**
* UIInterfaceOrientationMaskPortrait : 豎屏(正常)
* UIInterfaceOrientationMaskPortraitUpsideDown : 豎屏(上下顛倒)
* UIInterfaceOrientationMaskLandscapeLeft : 橫屏向左
* UIInterfaceOrientationMaskLandscapeRight : 橫屏向右
* UIInterfaceOrientationMaskLandscape : 橫屏(橫屏向左\橫屏向右)
* UIInterfaceOrientationMaskAll : 全部方向(包括上面的所有情況)
*/
return UIInterfaceOrientationMaskPortrait;
}