首先你要添加一个通知[notificationCenter addObserver:self selector:@selector(mediaPlayerPlaybackFinished:) name:MPMoviePlayerPlaybackDidFinishNotification object:self.moviePlayer]; /** 播放完成* @param notification 通知对象*/ -(void)mediaPlayerPlaybackFinished:(NSNotification *)notification{ NSLog(@"播放完成.%li",(long)self.moviePlayer.playbackState); // 你的操作 }
首先你要添加一个通知
[notificationCenter addObserver:self selector:@selector(mediaPlayerPlaybackFinished:) name:MPMoviePlayerPlaybackDidFinishNotification object:self.moviePlayer];
/**
播放完成
*
@param notification 通知对象
*/
-(void)mediaPlayerPlaybackFinished:(NSNotification *)notification{
}