Reputation: 5107
how to remove default done button of MPMovieController in iphone?
Upvotes: 0
Views: 1993
Reputation: 31730
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 MoviePlayer sample shows how to do this.
Upvotes: 1