从 NSURL 将项目添加到 MPMediaItemCollection

发布于 2024-11-17 03:53:25 字数 117 浏览 3 评论 0原文


在 .plist 文件中,我保留 iPod 库中音频文件的 NSURL。我需要通过这些 url 初始化 MPMediaItemCollection 项目。

我怎样才能做到这一点?
谢谢。

In .plist file I keep NSURLs of audio files from iPod library. I need to initialize MPMediaItemCollection items by these urls.

How can I do that?
Thanks.

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

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

发布评论

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

评论(1

青芜 2024-11-24 03:53:25

我找到了解决方案
把它放在这里,如果有人需要同样的东西一次

MPMediaQuery *everything = [[MPMediaQuery alloc] init];

    NSArray *itemsFromGenericQuery = [everything items];

    for (MPMediaItem *song in itemsFromGenericQuery) 
    {            
        if ([savedUrl isEqual:[song valueForProperty:MPMediaItemPropertyAssetURL]])
        {
            ownMediaItemCollection = [MPMediaItemCollection collectionWithItems: [NSArray arrayWithObject:song]];
        }
    }
    [everything release];

I found the solution
keep it here, if someone will need same thing once

MPMediaQuery *everything = [[MPMediaQuery alloc] init];

    NSArray *itemsFromGenericQuery = [everything items];

    for (MPMediaItem *song in itemsFromGenericQuery) 
    {            
        if ([savedUrl isEqual:[song valueForProperty:MPMediaItemPropertyAssetURL]])
        {
            ownMediaItemCollection = [MPMediaItemCollection collectionWithItems: [NSArray arrayWithObject:song]];
        }
    }
    [everything release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文