i want to check if ipod music is played, so i added the mediaplayer framework and imported it:

#import <MediaPlayer/MediaPlayer.h>

then i've got in an NSCoder:

-(id)initWithCoder:(NSCoder *)coder { 

self = [super initWithCoder:coder];

if(self)
{

    if ([[MPMusicPlayerController iPodMusicPlayer] playbackState] == MPMusicPlaybackStatePlaying) {
    }
    else {

        [self playBgMusic];


    } }

return self; }

But this doesn't work. If ipod music is playing and I start the app the ipod music turns off and the music from the app is played.

What's wrong?

link|improve this question

You haven't actually asked a question. – Twelve47 Apr 9 '11 at 10:15
you're right, i'm sorry it's caused by my tiredness. now there is a question – Leon Apr 9 '11 at 10:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.