视频播放 单个页面强制横屏

因为要写视频播放
但是仅仅视频播放页面横屏 其他页面都是正常的

- (BOOL)shouldAutorotate{

return NO;

}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations{

return UIInterfaceOrientationMaskLandscape;

}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{

return UIInterfaceOrientationLandscapeRight;

}
  • 莫泰状态可以更改
 PlayingViewController *playVC = [PlayingViewController initWithStoryboardName:@"VideoStoryboard" identifier:@"PlayingVC"];
    
    playVC.modalPresentationStyle = UIModalPresentationPageSheet;
    
    [self presentViewController:playVC animated:YES completion:nil];

你可能感兴趣的:(视频播放 单个页面强制横屏)