Reputation: 93
I am trying to hide the controls on a MPMoviePlayerController. Using:
moviePlayer.movieControlMode = MPMovieControlModeHidden;
Works fine on my 3GS and in the simulator, however on a 3G (running 3.1.3) it refuses to hide.
Any Suggestions?
Thanks, John
Upvotes: 0
Views: 1036
Reputation: 6051
you should use this code in order to hide controls :
player.moviePlayer.controlStyle = MPMovieControlStyleNone;
Upvotes: 1