我正在嘗試構建帶有功能的後退按鈕,點擊該按鈕時應停止播放的視頻。 在我的情況下,它從超視圖中刪除,但視頻仍在後臺播放。 我做如下,但它不工作iphone:如何停止點擊「後退」按鈕播放視頻?
-(IBAction)backButtonPressed
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieDidExitFullScreen:) name:MPMoviePlayerPlaybackDidFinishNotification object:player];
[self.navigationController popViewControllerAnimated:YES];
}
- (void) movieDidExitFullScreen:(NSNotification*)notification
{
[[NSNotificationCenter defaultCenter] removeObserver: self
name:MPMoviePlayerPlaybackDidFinishNotification
object: [notification object]];
MPMoviePlayerController *theMovie1 = [notification object];
[self.navigationController popViewControllerAnimated:YES];
[theMovie1 release];
}