如何将 MPMediaItemCollection 保存到 NSUSerDefaults?

发布于 2024-10-16 07:23:05 字数 87 浏览 8 评论 0原文

有人知道该怎么做吗?标准方法将不起作用。我希望用户选择一首歌曲,然后将其保存以供下次加载应用程序时使用,但我似乎无法将其放入 NSUserDefaults 中。

Anybody know how to do this? The standard method will not work. I want the user to pick a song, and then have it save for the next time they load the app, but i can't seem to get it into NSUserDefaults.

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

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

发布评论

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

评论(1

翻身的咸鱼 2024-10-23 07:23:05

您需要迭代该集合才能获取 MPMediaItems。
MPMediaItem 继承自 MPMediaEntity,它具有 -valueForProperty: 方法。如果您向该方法传递 MPMediaItemPropertyPercientID 常量,您将得到一个唯一标识该项目的 NSNumber。这是一个在发布过程中持续存在的值。

You need to iterate the collection to get the MPMediaItems.
MPMediaItem inherits from MPMediaEntity, which has a -valueForProperty: method. If you pass that method the MPMediaItemPropertyPersistentID constant, you'll get back an NSNumber that uniquely identifies the item. This is a value that's persistable across launches.

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