in my application a video file is loaded using MPMoviePlayerController. I would like to not allow the users seek forward using the scrub bar, I want them to watch the whole video. At the same time I would like to have Play/Pause controls available to him. Can anyone suggest me a way to do that ?
in my application a video file is loaded using MPMoviePlayerController. I would like to
Share
You won’t be able to do it with the standard controls since none of the values of
MPMovieControlStylewill do it. You will have to create a separate view with a play/pause button and runstoporplayon yourMPMovePlayerControllerinstance when the user presses the button.