I have an iPad app that has a movie preview view in the top half of the screen and thumbnails in the bottom half of the screen. When the user taps a thumbnail that movie starts playing in the movie preview view using a MPMoviePlayerViewController with control style MPMovieControlStyleEmbedded. The embedded style has the built in functionality of allowing the user to tap a fullscreen button to show the movie in fullscreen.
All of the above functionality works great but I want to always show a watermark over movies in the preview and fullscreen views. The watermark shows correctly in the preview view when I add a label to vcMoviePlayer.view but I cannot get that label to show over the movie in fullscreen mode after the fullscreen button has been pressed. I'm adding the label to vcMoviePlayer.view (making sure to bring the label to the front) when the movie player sends the MPMoviePlayerDidEnterFullscreenNotification but it still does not appear. Has anyone else seen this behavior? Does anyone know how to get a view to appear over a movie playing in fullscreen after the fullscreen button has been tapped? I've burned a lot of time trying to figure this out and any help is very very appreciated. Thanks!