// 是否支持自动旋转
- (BOOL)shouldAutorotate {
return self.isAutoRotate;
}
// 支持旋转的方向
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
return self.isAutoRotate?UIInterfaceOrientationMaskAll:UIInterfaceOrientationMaskPortrait;
}
// 呈现控制器时的方向
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationMaskPortrait;
}
网友评论