Andrew
Andrew

Reputation: 16051

MPMoviePlayerController - how to stop it hiding other items?

MPMoviePlayerController works almost as i'd like it to, except that it covers over any other on screen items, for example my navigation bar. Is there a way to stop this from happening?

Upvotes: 2

Views: 232

Answers (1)

Nils Munch
Nils Munch

Reputation: 8845

Its player is based on a UIView, like many othEr things.

Have you tried telling objecTs behind it to get in front, with the following :

Since your views are already inserted into your superview, you could easily call bringSubviewToFront: once for each view in whatever order you like.

Upvotes: 1

Related Questions