iOS个别界面旋转问题

/*是否应该自动旋转屏幕**/

- (BOOL)shouldAutorotate{

    return YES;

}

 /*是否支持屏幕旋转并指明旋转方向**/

- (UIInterfaceOrientationMask)supportedInterfaceOrientations{

    return UIInterfaceOrientationMaskLandscapeLeft;

}

/*相当于执行屏幕旋转**/ 

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{

    return UIInterfaceOrientationLandscapeLeft;

    

}

 

posted @ 2015-11-30 23:25  tingxins  阅读(168)  评论(0编辑  收藏  举报