是否可以唯一标识 MPMediaCollection 中的重复 MPMediaItem?
我正在使用 MPMediaItemCollection
来保存用户从 iPod 音乐库中选择的许多音乐曲目。我希望能够唯一地标识集合中的每个 MPMediaItem
,即使它们是重复的。这可能吗?
I am using an MPMediaItemCollection
to hold a number of user selected music tracks from the iPod music library. I want to be able to uniquely identify each MPMediaItem
within the collection even if they are duplicated. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了和你一样的问题,Apple 刚刚在 iOS v5.0 中为我提供了解决方案。 MPMusicPlayerController 类中有一个 indexOfNowPlayingItem 属性。您可以使用它来索引您的数组。当然这是如果您使用 MPMusicPlayerController 的话。
I've had the same problem as you, and Apple has just provided me the solution in iOS v5.0. There is an indexOfNowPlayingItem property in the MPMusicPlayerController class. You can use that to index into your array. This is of course if you are using MPMusicPlayerController.