views:

632

answers:

2

Pause mpmovieplayercontroller programmatically - is it possible?

tnx.

A: 

According to the Apple Documentation of MPMoviePlayerController you simply need to call stop on your object. However, this will also hide it.

DonnaLea
+2  A: 

MPMoviePlayerController implements the MPMediaPlayback protocol, so on your player, you can just send a pause message:

[player pause];
Mr. Matt
This is only for iOS < 4.0
donodare