I am trying to have my app play music from ipod using MPMusicPlayerController but there are devices which do not have music in there ipod library. Can anyone tell me if there is a way to check whether there is music in the ipod library or not before initializing the ipod player.

Thanks in advance.

link|improve this question

62% accept rate
feedback

2 Answers

up vote 4 down vote accepted
if ([[[MPMediaQuery songsQuery] items] count] > 0) {
    // The user has songs in his or her library.
}
link|improve this answer
Thank you for the reply it worked – Ankur Sep 29 '10 at 20:52
feedback

MPMediaQuery *query = [MPMediaQuery songsQuery]; NSArray *collections = [query collections];

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.