iPhone - MPMusicPlayerController - 从队列中选择音频并播放
我在我的应用程序中使用 MPMusicPlayerController 。我正在使用方法“setQueueWithItemCollection”设置队列。我可以播放歌曲、转到上一首/下一首歌曲等。 但是我怎样才能让 MPMusicPlayerController 播放队列中的第五首歌曲呢?
I'm using MPMusicPlayerController in my application. I'm setting a queue using method "setQueueWithItemCollection". I'm able to play the songs, move to prev/next songs etc.
But how can I make MPMusicPlayerController play some 5th song from the queue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您设置队列时,请将队列保存在您可以访问的其他位置。
如果您想播放第五首歌曲,请使用 MPMusicPlayerController.nowPlayingItem= [[queue items] objectAtIndex:4] ,它将播放第五首歌曲。你不必跳过5次。
when you set the queue, save the queue somewhere else that you can access.
if you want to play the fifth song, use MPMusicPlayerController.nowPlayingItem= [[queue items] objectAtIndex:4] and it will play the fifth song. you don't have to skip 5 times.
您必须在应用程序中维护另一个队列列表。
然后,每次,当您跳到另一首歌曲时,获取播放器当前的项目,将其与迭代的数组进行比较,同时使用从音乐播放器跳到上一首或下一首歌曲。
没有找到其他解决方案。
you have to maintain another list of queue in your application.
Then everytime, when you to jump to another song, get players current item, compare it from your array iterating through it and at the same time use skip to prev or next song from music player.
no other solution found.