So I'm trying to develop a music game that uses the iPod music library. The user picks a song based on a prompt. Because I'm using [MPMusicPlayerController iPodMusicPlayer], it's possible the user changed the song in the iPod app before coming back to the app. If that's the case, I want it to call [musicPlayer stop]. Unfortunately, I can't figure out how to save the currently playing song and check it against the currently playing song when the app returns from background. Check the code below.

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    MPMusicPlayerController *musicPlayer = [MPMusicPlayerController iPodMusicPlayer];
    NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
    NSString *persistantID = [musicPlayer.nowPlayingItem valueForProperty:MPMediaItemPropertyPersistentID];
    [prefs setValue:persistantID forKey:@"NOWPLAYING_ID"];

}

And

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    MPMusicPlayerController *musicPlayer = [MPMusicPlayerController iPodMusicPlayer];
    NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
    NSString *persistantID = [prefs stringForKey:@"NOWPLAYING_ID"];
    if (persistantID == [musicPlayer.nowPlayingItem valueForProperty:MPMediaItemPropertyPersistentID]) {
    }
    else {
        [musicPlayer stop];
    }
    [prefs setValue:nil forKey:@"NOWPLAYING_ID"];

}

Can anyone give me a hand? Thanks so much.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
- (void)applicationWillResignActive:(UIApplication *)application    {
    self.mediaItemSavedWhenAppSuspended = [musicPlayer nowPlayingItem];
}

- (void)applicationDidBecomeActive:(UIApplication *)application {
    MPMediaItem *nowPlayingItem = [musicPlayer nowPlayingItem];
    NSNumber *playingItem = [nowPlayingItem valueForProperty:MPMediaItemPropertyPersistentID];
    NSNumber *previousItem = [self.mediaItemSavedWhenAppSuspended valueForProperty:MPMediaItemPropertyPersistentID];

    if( [playingItem compare:previousItem] == NSOrderedSame )   {   //  same track still playing
   }
link|improve this answer
How would I save the media item when suspended? And why can't I just save the Persistent ID of the media item instead? However, this makes a lot of sense. Thanks. – Dylan Gattey Jun 21 '11 at 18:28
Sure, save the Persistent ID instead. Just add NSNumber *previousItem to your header file instead of MPMediaItem *mediaItemSavedWhenAppSuspended. – amergin Jun 21 '11 at 19:00
Good try but if([currentSavedPersistantID compare:self.savedPersistantID] == NSOrderedSame) { } is throwing an exception. You sure that the ID is a number? I thought it was an NSString, but that doesn't work either. – Dylan Gattey Jun 22 '11 at 1:47
Figured it out. It can be a string (maybe also a number), and I just did if (self.savedPersistantID) {} to only check for a value if it existed. Silly me :) Thanks for your help! – Dylan Gattey Jun 22 '11 at 1:53
feedback

Your Answer

 
or
required, but never shown

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