2009-12-20 90 views

回答

6

的MPMoviePlayerController實現MPMediaPlayback協議,所以對你的球員,你可以只發送一個暫停的消息:在IOS 5.1

[player pause]; 
+0

這僅適用於iOS版< 4 – Shay 2010-08-26 10:10:34

1
... 
player = [[MPMoviePlayerController alloc] initWithContentURL:.... 
... 

- (IBAction)btPausePressed { 
    [player pause]; 
} 

對我來說這是工作

相關問題