views:

43

answers:

1

I'm new to programming in Objective-c and the iPhone but I am working on an app to teach myself. I have been trying to figure out how to record sounds on the iPhone. Apple provides excellent documentation for recording from the microphone with AVAudioRecorder but I want to record sounds made by my app, or even just record sounds when buttons are pressed (button is pressed, certain audio gets recorded).
I have no clue how to do this and can't seem to find anything that would help me along this path, only microphone stuff.
Can anyone share ideas or code that would make this possible?
Thanks

+2  A: 

Once you move beyond the convenience classes like AVAudioRecorder, you've got a lot of studying to do.

I would start with:

Getting Started with Audio and Video

Multimedia Programming Guide:Audio

Core Audio Overview

Audio programming is a very large and complex subject. If you want to customize, be prepared to spend some time learning it.

TechZen