
Question:
how to remove default done button of MPMovieController in iphone?
Answer1:Try this,
<ul><li><a href="http://iphoneincubator.com/blog/audio-video/how-to-play-youtube-videos-within-an-application" rel="nofollow">http://iphoneincubator.com/blog/audio-video/how-to-play-youtube-videos-within-an-application</a>
</li> <li><a href="http://apiblog.youtube.com/2009/02/youtube-apis-iphone-cool-mobile-apps.html" rel="nofollow">http://apiblog.youtube.com/2009/02/youtube-apis-iphone-cool-mobile-apps.html</a>
</li> </ul>Answer2:You can't add it directly to the MPMoviePlayerController
's view -- that's a private view and it can't be accessible.
If you want to add buttons, you need to create a transparent window over the top of everything and add the buttons to that.
Apple's <a href="http://developer.apple.com/iphone/library/samplecode/MoviePlayer_iPhone/index.html#//apple_ref/doc/uid/DTS40007798" rel="nofollow">MoviePlayer</a> sample shows how to do this.