iPod の音楽を止めずにアプリ内でサウンドを再生することはできますか?
現在、以下を使用していますが、iPodの音楽が停止します
soundPath =[[NSBundle mainBundle] pathForResource:@"mySound" ofType:@"mp3"];
soundURL = [NSURL fileURLWithPath:soundPath];
mySound = [[AVAudioPlayer alloc] initWithContentsOfURL:soundURL error:nil];
[mySound prepareToPlay];
その後
[mySound play];