John
John

Reputation: 93

MPMoviePlayerController with MPMovieControlModeHidden

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

Answers (1)

iOS.Lover
iOS.Lover

Reputation: 6051

you should use this code in order to hide controls :

player.moviePlayer.controlStyle = MPMovieControlStyleNone;

Upvotes: 1

Related Questions