Tom です。 iPhone のメモリ容量制約との戦いを続けています。 「長い楽曲を演奏しながら、短い音声ファイルを再生する」 これを実現しようとすると、iPhone OS 2.2 で登場した AVAudioPlayer が役立ちます。 ただし1つ注意が必要で、同時に再生しようとするファイルの片方は、.caf ファイルにすること。 これでもう一方の音声ファイルは、mp3 などが使えます。 AVAudioPlayer *player; NSBundle *mainBundle = [NSBundle mainBundle]; NSString* path = [mainBundle pathForResource:[NSString stringWithFormat:@"foo.mp3"]; NSURL* url = [NSURL fileURLWithPath:path]; if(