2番目のUIViewcontrollerをプッシュするUIViewcontrollerがあります。2番目のUIViewcontrollerにはUIWebviewがあります:いくつかのテキストと、youtube url(埋め込み)からのいくつかのビデオ。ビデオをクリックすると、プレーヤーが開いていて、画面はまだ縦向きモードであり、横向きに回転しません。
ビデオは、次の機能を備えたios5で正しく機能します。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieIsPlaying:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];
- (void)movieIsPlaying:(NSNotification *)notification
{
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight | UIInterfaceOrientationLandscapeLeft animated:NO];
}
この問題は、ios6でのみ発生します。
これを解決する方法はありますか?