Question

hi i want hide movie control (Play - next - volume and ..)from MPMoviePlayer ... what can i do ?

Was it helpful?

Solution

You can do this by this line of code which hides the controls of the player.

[player setMovieControlMode:MPMovieControlModeHidden];

OTHER TIPS

Haven't tried it, but isn't there a setHidden:YES you can do?

iOS 3.2 and later use "setControlStyle" e.g.

        [player setControlStyle:MPMovieControlStyleNone];

Check out the movieControlMode property of MPMoviePlayerController. You'll probably want MPMovieControlModeHidden.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top