Pause mpmovieplayercontroller programmatically - is it possible?
tnx.
Pause mpmovieplayercontroller programmatically - is it possible?
tnx.
According to the Apple Documentation of MPMoviePlayerController you simply need to call stop
on your object. However, this will also hide it.
MPMoviePlayerController implements the MPMediaPlayback protocol, so on your player, you can just send a pause message:
[player pause];