如何在播放AVPlayer时开始下一首歌曲或识别出一首歌曲已完成?

时间:2011-09-12 10:51:49

标签: iphone objective-c ios avplayer avqueueplayer

如何使用AVPlayer立即开始下一首歌?我在MPMediaItemCollection中从iPod库中选择了歌曲集。

现在我如何使用AVPlayer逐一播放歌曲列表?

1 个答案:

答案 0 :(得分:6)

要回答您的第一个问题,您可以使用与

相同的通知
[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(songFinished:)
                                             name:AVPlayerItemDidPlayToEndTimeNotification
                                           object:[yourAVPlayer currentItem]];

-(void)songFinished:(NSNotification *)notification
{
     //Do your next stuff here;
}