I am trying to make a small music app on the iphone. I want to have an octave a piano which will respond to touches and play the key or keys that the user touches. How would i be able to get two or more sounds to play at the same time so it sounds like a chord? I tried using AVFoundation but the two sounds just play one after the other.
|
|
You would have to use AudioQueueServices. The docs are here: Apple.com - AudioQueueServices Reference Essentially you would have to write some code to open up multiple outputs, and then prime the queue and have them block before AudioQueueStart(AudioQueueRef aq) until everything was primed and ready and then let them go. AVAudioPlayer isn't really good enough for this sort of thing, unfortunately. |
||
|
|
