我有一個UIViewcontroller,推送第二個UIViewcontroller。第二個UIViewcontroller有一個UIWebview:一些文本和一些來自YouTube網址(嵌入)的視頻。當我點擊視頻時,播放器正在打開,屏幕仍處於縱向模式,而不是旋轉到橫向。嵌入式YouTube不在橫向模式下播放(iOS6)
的視頻在iOS5的正常工作與功能:僅與iOS6的發生
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieIsPlaying:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];
- (void)movieIsPlaying:(NSNotification *)notification
{
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight | UIInterfaceOrientationLandscapeLeft animated:NO];
}
的問題。
任何想法如何解決這個問題?