Reputation: 1940
I have a long queue of controllers, each with their own short videos. They're organized in a UIPageViewController
, and when each video finishes, it displays the next VC without animation. The idea is to look like it's one big movie with jump cuts. I have the functionality mostly there, but every time a new clip loads, it presents the controls at the bottom. Is there anyway of prevent this apart from making my own controls?
Upvotes: 1
Views: 140
Reputation: 1262
You can use this to hide the control bar:
moviePlayerController.controlStyle = MPMovieControlStyleNone;
Upvotes: 2