Does anyone know if it's possible to create an MPMediaItemCollection object containing every song in a users iPod library without the user having to select it using the MPMediaPicker stuff? Like, on application launch perhaps.

Thanks...

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Try this one

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

    NSArray *songs = [everything items];
    MPMediaItemCollection *mediaCollection = [MPMediaItemCollection collectionWithItems:songs];
    [everything release];
link|improve this answer
Works a treat. Thanks! – Adam Waite Dec 8 '11 at 3:28
feedback

Your Answer

 
or
required, but never shown

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