I am using MPMovieController in my application in order to play fullscreen player, it works well on iOS 4, but not in iOS 5.
When I touch Done button, view player disappears stopping audio but a black screen is still there.
Here is my pretty simple source code:
moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:self.movieURL]; [moviePlayer play];
[self.view addSubview:self.moviePlayer.view]; [self.moviePlayer setControlStyle:MPMovieControlStyleFullscreen]; [self.moviePlayer setFullscreen:YES];
Did you experienced a similar behavior?
Thanks.
Thierry