如何使用AVPlayer立即开始下一首歌?我在MPMediaItemCollection
中从iPod库中选择了歌曲集。
现在我如何使用AVPlayer逐一播放歌曲列表?
答案 0 :(得分:6)
要回答您的第一个问题,您可以使用与
相同的通知[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(songFinished:)
name:AVPlayerItemDidPlayToEndTimeNotification
object:[yourAVPlayer currentItem]];
-(void)songFinished:(NSNotification *)notification
{
//Do your next stuff here;
}