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.

link|improve this question

20% accept rate
feedback

1 Answer

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];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.