views:

252

answers:

1

I added some custom controls to a MPMoviePlayerController. Ths is explicitly written in the documentation that tis is possible:

You can add subviews to the view in this property. You might do this in cases where you want to display custom playback controls or add other custom content that is relevant to your application.

But this works only as long as I don't enter to fullscreen mode. When entering fullscreen mode the controls disappear. I tried to move the custom control view to front when entering the fullscreen mode, but that didn't had any effect. Is this just not working or what do I have to do to get custom controls in the fullscreen mode?

P.S. I'm working with iOS 3.2 on the iPad

A: 

It seems that the video in the fullscreen is rendered on a different view then the non fullscreen one. So the only thing to get this (at least what I discovered) is to implement your own fullscreen mode. I filed a bug at apple. So let's hope they going to fix this in the next release.

V1ru8