使用AVQueuePlayer获取当前曲目信息
我正在将 iPod 库加载到 AVQueuePlayer 中并使用以下命令播放它:
[[AVQueuePlayer alloc]]initWithItems:[MPMediaCollectionInstance items] ]; //just one line.
但是如何读取当前正在播放的 MPMediaItem?我想知道艺术家/歌曲名称等信息。 谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
拥有您已分配的 AVQueuePlayer 实例。
通过该实例,您可以获得 AVPlayerItem。
对于上述行,请检查 文档参考。
现在尝试以下代码,
它将给出如下列表:
现在您可以获取相应键的值。为此,您必须参考 这个文档也是如此。
Have the instance of the AVQueuePlayer that you have allocated.
With that instance, you can get the AVPlayerItem.
For the above line, please check the doc reference.
And now try the following code
Which will give a list as follows:
Now you can get the value for corresponding keys. For this, you have to refer this doc too.