WeChat icon indicating copy to clipboard operation
WeChat copied to clipboard

请问 如何在某个页面 强制横屏呢

Open JzwOnly opened this issue 6 years ago • 1 comments

JzwOnly avatar Dec 12 '19 03:12 JzwOnly

MHViewController.m 里面重写了 #pragma mark - Orientation

  • (UIInterfaceOrientationMask)supportedInterfaceOrientations {return UIInterfaceOrientationMaskPortrait;}
  • (BOOL)shouldAutorotate {return YES;}
  • (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {return UIInterfaceOrientationPortrait;}

#pragma mark - Status bar

  • (BOOL)prefersStatusBarHidden { return NO; }
  • (UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; }
  • (UIStatusBarAnimation)preferredStatusBarUpdateAnimation { return UIStatusBarAnimationFade; } 你可以在你想要的页面重写这几个方法即可

CoderMikeHe avatar Dec 12 '19 03:12 CoderMikeHe