视频播放 单个页面强制横屏
2016-11-16 本文已影响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];