使用 MPMusicPlayerController 播放 MPMediaItemCollection,如何获取播放结束时的事件
Posted
技术标签:
【中文标题】使用 MPMusicPlayerController 播放 MPMediaItemCollection,如何获取播放结束时的事件【英文标题】:Using MPMusicPlayerController play a MPMediaItemCollection, how to get the event of at end of playing 【发布时间】:2010-10-26 13:30:09 【问题描述】:我正在使用MPMusicPlayerController
在MPMediaItemCollection
中播放MPMediaItems
。 MPMediaItem
s 播放完毕后如何触发事件?
【问题讨论】:
【参考方案1】:注册MPMusicPlayerControllerPlaybackStateDidChangeNotification
通知:
[notificationCenter addObserver:self selector:@selector(handlePlaybackStateChanged:) name:MPMusicPlayerControllerPlaybackStateDidChangeNotification object:self.musicPlayer];
并告诉你的 musicPlayerController 生成这些通知:
[self.musicPlayerController beginGeneratingPlaybackNotifications];
在handlePlaybackStateChanged:
你可以查看musicPlayerController的playbackState
属性:
- (void)handlePlaybackStateChanged:(NSNotitication*)notification
if (self.musicPlayerController.playbackState == MPMusicPlaybackStateStopped ||
self.musicPlayerController.playbackState == MPMusicPlaybackStateInterrupted ||
self.musicPlayerController.playbackState == MPMusicPlaybackStatePaused)
// do your stuff
【讨论】:
以上是关于使用 MPMusicPlayerController 播放 MPMediaItemCollection,如何获取播放结束时的事件的主要内容,如果未能解决你的问题,请参考以下文章
在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?
Qt静态编译时使用OpenSSL有三种方式(不使用,动态使用,静态使用,默认是动态使用)