MPMusicPlayerController 知道上一首和下一首歌曲

发布于 2024-12-13 11:07:11 字数 155 浏览 0 评论 0原文

MPMusicPlayerController 为我提供了属性 nowPlayingItem,但我也对上一首和下一首歌曲感兴趣。

有什么方法可以检索带有下一个和上一个元素的 MPMediaItem 吗?

MPMusicPlayerController gives me the property nowPlayingItem, but i'm also interestend in the previous e next song.

Is there any way to retrive a MPMediaItem with the next and previous elements?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

彩扇题诗 2024-12-20 11:07:11

您如何设置 MPMusicPlayerController 的播放队列?您可能正在使用 MPMediaQuery 来查找 MPMediaItemCollection,然后将其设置为 MPMusicPlayerController 的队列。

如果是这种情况,您可以在 iOS 5+ 中获取 MPMusicPlayerController 的 indexOfNowPlayingItem 属性,加或减 1,然后从找到的 MPMediaItemCollection 的 items 属性中选择一个 MPMediaItem。 (在 iOS < 5 中,您可以获取 items 数组中 nowPlayingItem 的索引,并使用它来代替 indexOfNowPlayingItem。)

重点是您无法访问玩家队列中的项目,但如果您保留您最初分配给队列的项目,您可以访问该集合中的项目。

How are you setting the playback queue for your MPMusicPlayerController? You might be using an MPMediaQuery to find an MPMediaItemCollection, which you then set as the MPMusicPlayerController's queue.

If that's the case, you can take the MPMusicPlayerController's indexOfNowPlayingItem property in iOS 5+, add or subtract one, and select an MPMediaItem out of the items property of the MPMediaItemCollection that you found. (In iOS < 5, you can get the index of nowPlayingItem in the items array and use that in place of indexOfNowPlayingItem.)

The point is that you can't access the items in a player's queue, but if you keep the collection of items that you originally assigned to the queue, you can access the items in that collection.

╭ゆ眷念 2024-12-20 11:07:11

您可以通过以下方式播放下一首和上一首歌曲:

斯威夫特2.0

let musicPlayer: MPMusicPlayerController?
musicPlayer.skipToNextItem()  // Next Song
musicPlayer.skipToPreviousItem() // Prev Song
musicPlayer.skipToBeginning() // Start Of Current Media

可运行 100% 经过测试的代码。

You can play next and Previous songs in this way:

Swift 2.0

let musicPlayer: MPMusicPlayerController?
musicPlayer.skipToNextItem()  // Next Song
musicPlayer.skipToPreviousItem() // Prev Song
musicPlayer.skipToBeginning() // Start Of Current Media

Works 100% tested Code.

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