因为要写视频播放
但是仅仅视频播放页面横屏 其他页面都是正常的
- (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];
网友评论