转屏

//当前vc是否支持转屏

-(BOOL)shouldAutorotate

{

    return YES;

}

//支持哪些转屏

-(NSUInteger)supportedInterfaceOrientations

{

    return UIInterfaceOrientationMaskPortrait;

}

 

//当前viewcontroller默认的屏幕方向

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{

    return ( UIDeviceOrientationLandscapeRightUIDeviceOrientationLandscapeLeft );

}

posted @ 2015-10-20 15:08  xuanInitial  阅读(128)  评论(0编辑  收藏  举报