Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to start playing a song (which is in the iPod library) in another iOS App using the name of the song.

I've studied some of the MediaPlayer framework, but didn't find anything useful. I know this can be done, as a couple of apps in the App Store do it, such as SoundHound, which lets you play a certain song you've discovered if you have it in your iPod library.

share|improve this question

1 Answer

up vote 1 down vote accepted

try this : http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-music-library-access/

EDIT:

you can try this to reach songs:

#pragma mark - Media Picker

- (IBAction)showMediaPicker:(id)sender
{
    MPMediaPickerController *mediaPicker = [[MPMediaPickerController alloc] initWithMediaTypes: MPMediaTypeAny];

    mediaPicker.delegate = self;
    mediaPicker.allowsPickingMultipleItems = YES;
    mediaPicker.prompt = @"Select songs to play";

    [self presentModalViewController:mediaPicker animated:YES];
    [mediaPicker release];
}

- (void) mediaPicker: (MPMediaPickerController *) mediaPicker didPickMediaItems: (MPMediaItemCollection *) mediaItemCollection
{
    if (mediaItemCollection) {

        [musicPlayer setQueueWithItemCollection: mediaItemCollection];
        [musicPlayer play];
    }

    [self dismissModalViewControllerAnimated: YES];
}


- (void) mediaPickerDidCancel: (MPMediaPickerController *) mediaPicker 
{
    [self dismissModalViewControllerAnimated: YES];
}
share|improve this answer
1  
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Barry Nov 10 '11 at 20:21
it was my bad, sorry bro, thanks for your advice – relower Nov 14 '11 at 15:11
No problem. Thanks for editing your answer. – Barry Nov 14 '11 at 15:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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