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?