MPMediaItem 生成唯一的文件名

发布于 2024-12-19 07:01:08 字数 134 浏览 2 评论 0原文

我正在从 iPod 库导入项目,并希望为导入的每个 MPMediaItem 生成唯一的文件名。我希望文件名唯一地代表一个 MPMediaItem,这样如果用户再次导入它,我在本地库中就不会有两个相同的文件。

实现这一目标的最佳方法是什么?

I am importing items from the iPod library and want to generate a unique filename for each MPMediaItem imported. I want the filename to uniquely represent one MPMediaItem so that if the user imports it again I do not have two files that are the same in the local library.

What's the best way of achieving this?

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

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

发布评论

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

评论(1

Saygoodbye 2024-12-26 07:01:08

我不确定我是否正确理解你的问题,但每个 MPMediaItem 都有一个唯一的标识符

[mediaItem valueForProperty:MPMediaItemPropertyPersistentID];

这会返回一个 NSNumber,它是一个 longlong。希望这有帮助,或者如果我有不懂的地方请告诉我。

I am not sure if I understand your question correctly but each MPMediaItem has a unique identifier

[mediaItem valueForProperty:MPMediaItemPropertyPersistentID];

this returns an NSNumber that is a longlong. Hope this helps or if I have miss understood let me know.

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