I have a view where I show a MPMoviePlayerController with the following code:
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:url];
[[player view] setFrame:self.view.bounds];
[self.view addSubview: [player view]];
[player play];
Then I show an iAd Banner using the delegates and it actually shows if I don't add the player. So the iAd Banner is under the player. I need it to be shown over the player view, it has to cover part of the played video.
Is that possible fellas?