I'm trying to show a MPMoviePlayerViewController.
MPMoviePlayerViewController* theMoviePlayer = [[MPMoviePlayerViewController alloc]
initWithContentURL:[NSURL URLWithString:media_url]];
If I'm adding theMoviePlayer View to the current view via addSubview , everything is fine. But if I'm trying to show the player in a modal window, only the audio of the video is played back in the background. The view is not beeing displayed.
[self presentMoviePlayerViewControllerAnimated:theMoviePlayer];