Hi I am using SimpleAudioEngine to play sound files.
I play background music using
[[SimpleAudioEngine sharedEngine] playBackgroundMusic:@"SoundName.aiff" loop:isLoop]
I need to stop and unload the music when player reaches the game play.
and when i use
[[SimpleAudioEngine sharedEngine] stopBackgroundMusic];
it stops all other sound effects as well.
and I don't find any function with name "unloadBackground" like "unloadEffect" .
suggestions?