Reputation: 39
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
Reputation: 27506
You can remove all the control buttons from the MPMoviePlayerController
using the controlStyle
property:
playerController.controlStyle = MPMovieControlStyleNone;
Upvotes: 3