如何立即使用AVPlayer开始下一首歌曲?我从iPod库中选择了MPMediaItemCollection
中的歌曲集。
现在我该如何使用AVPlayer播放一首歌曲列表?
最佳答案
对于第一个问题的答案,您可以将Notification与
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(songFinished:)
name:AVPlayerItemDidPlayToEndTimeNotification
object:[yourAVPlayer currentItem]];
-(void)songFinished:(NSNotification *)notification
{
//Do your next stuff here;
}
关于iphone - 如何在使用AVPlayer播放时开始播放下一首歌曲或识别出歌曲已结束?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7386726/