yellahd
yellahd

Reputation: 39

Don't want user to have playback control using MPMoviePlayerController?

I am wanting to remove/hide playback buttons so that the user can not control playback. Is this possible in MPMoviePlayerController?

Upvotes: 0

Views: 319

Answers (1)

sch
sch

Reputation: 27506

You can remove all the control buttons from the MPMoviePlayerController using the controlStyle property:

playerController.controlStyle = MPMovieControlStyleNone;

Upvotes: 3

Related Questions