我有一个带有故事板,少量xib和自定义单元格的iPhone应用程序。
将应用程序设置为“纵向”作为“支持的界面方向”(我的意思是一切都像这样显示)。 在我的自定义单元格中,Uiwebview链接到youtube嵌入式视频,当我点击它时视频开始播放,但我的问题是它们总是以“纵向”模式播放。 我已经阅读了很多解决这个问题的东西,但仅限于ios5。
实际上: 我可以识别视频何时开始或停止播放。 我可以识别设备方向。 但我不能(我想)从纵向到横向切换(强制)方向,或者如果用户更改其设备的方向,则提出此功能。
提前致谢。
PS:如果需要,我可以显示应用程序标识内容的代码。
答案 0 :(得分:24)
我接受了Almas Adilbek的回答(做得非常好!)并将其归结为其基本组成部分。只是这个代码(添加到我的应用程序委托)似乎正在为我获得所需的结果。如果我遇到任何问题,我会更新。
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
id presentedViewController = [window.rootViewController presentedViewController];
NSString *className = presentedViewController ? NSStringFromClass([presentedViewController class]) : nil;
if (window && [className isEqualToString:@"MPInlineVideoFullscreenViewController"]) {
return UIInterfaceOrientationMaskAll;
} else {
return UIInterfaceOrientationMaskPortrait;
}
}
答案 1 :(得分:5)
我有同样的问题。我的解决方案是:
1.首先打开xcode项目中的所有方向:
2.在 AppDelegate.m 中添加:
-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
NSArray *stackViewControllers = self.navigationController.viewControllers;
UIViewController *rvc = [stackViewControllers objectAtIndex:stackViewControllers.count - 1];
if([rvc isKindOfClass:[VideoViewController class]])
{
id presentedViewController = [rvc presentedViewController];
NSString *viewControllerName = NSStringFromClass([presentedViewController class]);
if([viewControllerName isEqual:@"MPInlineVideoFullscreenViewController"] && [VideoViewController isVideoPlaying]) {
return UIInterfaceOrientationMaskAll;
}
}
return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;
}
在上面的代码中,每次系统要求 supportedInterfaceOrientationsForWindow 时,你检查当前的viewController是否是嵌入了youtube播放器UIWebView
的位置,并检查视频是否正在播放(即视频处于全屏模式)
注意:我使用UINavigationController
,如果不这样做,则必须进行一些更改才能获得当前 viewController。
3.在 viewController 中,我为youtube嵌入式播放器放置UIWebView
(在我的情况下是 VideoViewController ),在它的头文件中添加方法:< BR />
+(BOOL)isVideoPlaying;
4.在 VideoViewController.m 中添加静态变量:
static BOOL _isVideoPlaying = NO;
5.在 viewDidLoad 中添加addObserver用于通知,以便了解视频开始播放和 willExitPlaying :
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playerStarted:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playerWillExitFullscreen:) name:@"UIMoviePlayerControllerWillExitFullscreenNotification" object:nil];
6.此外,添加通知选择器方法:
-(void)playerStarted:(NSNotification *)notification{
_isVideoPlaying = YES;
}
-(void)playerWillExitFullscreen:(NSNotification *)notification {
_isVideoPlaying = NO;
if([AppUtils iOSVersion] < 6) //For iOS < 6.0, you must manually rotate viewController's view when fullscreen video playing is dismissed.
{
if ([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeLeft || [[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeRight)
{
self.navigationController.view.userInteractionEnabled = NO;
[UIView animateWithDuration:0.5 animations:^{
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];
// rotate main view, in this sample the view of navigation controller is the root view in main window
[self.navigationController.view setTransform: CGAffineTransformMakeRotation(180 * M_PI * 0.5)];
// set size of view
[self.navigationController.view setFrame:CGRectMake(0, 0, 320, 960)];
} completion:^(BOOL finished) {
self.navigationController.view.userInteractionEnabled = YES;
}];
}
}
}
7.并在 VideoViewController.m :
+(BOOL)isVideoPlaying {
return _isVideoPlaying;
}
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
if(!isVideoPlaying) {
return toInterfaceOrientation != UIInterfaceOrientationLandscapeLeft && toInterfaceOrientation != UIInterfaceOrientationLandscapeRight;
}
return YES;
}
所有这些技巧对我来说都很有用,支持iOS 5及更高版本
希望它适合你!