iOS屏幕旋转

2017-12-25  本文已影响0人  盖盖678
// 是否支持自动旋转
- (BOOL)shouldAutorotate {
  return self.isAutoRotate;
}
// 支持旋转的方向
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
  return self.isAutoRotate?UIInterfaceOrientationMaskAll:UIInterfaceOrientationMaskPortrait;
}
// 呈现控制器时的方向
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
  return UIInterfaceOrientationMaskPortrait;
}
上一篇下一篇

猜你喜欢

热点阅读