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

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

上一篇 下一篇

猜你喜欢

热点阅读