If you just want to play a bunch of audio files simultaneously, this is easy; unlikes Windows, OS X acts as if it has an infinite-channel mixer built-in, and all the higher-level functions just grab a new channel if necessary for each sound. For example:
NSURL *u1 = [[NSBundle mainBundle] URLForResource:@"1" withExtension:@"mp3"];
NSURL *u2 = [[NSBundle mainBundle] URLForResource:@"2" withExtension:@"mp3"];
NSSound *s1 = [[NSSound alloc] initWithContentsOfURL:u1 byReference:YES];
NSSound *s2 = [[NSSound alloc] initWithContentsOfURL:u2 byReference:YES];
[s1 play];
[s2 play];
This will start playing MyApp.app/Contents/Resources/1.mp3 and MyApp.app/Contents/Resources/2.mp3 at (very close to) the same time.
If you need a (real or virtual) file with a bunch of audio tracks in them, QTKit is probably the easiest way; create a movie, open all of your audio files, copy their tracks into the movie (with the same start date), and now you can play the movie (or do whatever else you want).
If you want to actually merge the audio into one stereo track (e.g., so you can save a normal audio file), instead of just playing the tracks together at runtime, you could use QTKit as above and create an export session (much like using the "Export…" feature in QuickTime Player), or use CoreAudio, or a variety of different cross-platform open source libraries.