美文网首页
视频播放 单个页面强制横屏

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

作者: 李栖桐 | 来源:发表于2016-11-16 11:06 被阅读37次

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

- (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];

相关文章

网友评论

      本文标题:视频播放 单个页面强制横屏

      本文链接:https://www.haomeiwen.com/subject/sdfrpttx.html