Reputation: 4022
I want to display the video controls and disable them when an video is played using MPMoviePlayerController. I am able to display the controls but they go off after 3 seconds and i need to tap on the screen again to see the controls again. And moreover i want to disable the controls as well. I just want the user to see the progress of the video without any control. Any suggestion?
Upvotes: 0
Views: 262
Reputation: 667
set controlStyle
to MPMovieControlStyleNone
and
add UIProgressView
to show progress
Upvotes: 1