iPhone - MPMusicPlayerController - 从队列中选择音频并播放

发布于 2024-11-23 19:34:31 字数 152 浏览 1 评论 0原文

我在我的应用程序中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

是伱的 2024-11-30 19:34:31

当您设置队列时,请将队列保存在您可以访问的其他位置。
如果您想播放第五首歌曲,请使用 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.

两个我 2024-11-30 19:34:31

您必须在应用程序中维护另一个队列列表。
然后,每次,当您跳到另一首歌曲时,获取播放器当前的项目,将其与迭代的数组进行比较,同时使用从音乐播放器跳到上一首或下一首歌曲。
没有找到其他解决方案。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文