我有我的應用程序在肖像模式。在風景和肖像中播放視頻
當視頻播放器進入全屏模式時,我想要以橫向和縱向播放該視頻。
moviePlayer = [[MPMoviePlayerController alloc]initWithContentURL:url];
[moviePlayer.view setAutoresizingMask:(UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth)];
[moviePlayer setScalingMode:MPMovieScalingModeFill];
moviePlayer.view.frame = CGRectMake(0, 0, self.videoPlayerView.frame.size.width, self.videoPlayerView.frame.size.height);
[self.videoPlayerView addSubview:moviePlayer.view];
我正在玩一個按鈕。
什麼是您的rootViewController uinavigationcontroller或uitabbarcontroller? –
問題的標題應該是關鍵的。並在問題的主體中使用一些解釋。 – Mrug
你只是嘗試運行應用程序,然後轉動模擬器?或實際的設備? –