Notification when movie player control gets visible/hidden?

Viewed 1475

I just want to know if its possible to get a notification when the playback control gets visible or hidden?

For example, I want to present a video with the style:

self.moviePlayerController.controlStyle = MPMovieControlStyleEmbedded;

When the video starts playing, the playback controls gets visible and automatically disappears. If the user just tab on the video, the controls appear.

I need a notification so i can adjust my view (reposition some additional buttons under the MPMoviePlayerController view. Is that possible? Because unfortunately I found nothing in the documentation.

1 Answers
Related