With the AVAudioPlayer, can I stream live audio from my microphone?
If so, how would I do this?
With the AVAudioPlayer, can I stream live audio from my microphone?
If so, how would I do this?
No.
AVAudioPlayer only can play audio files.
Depending on what you're trying to accomplish, you might want to look into AudioQueues and the aurioTouch example from Apple's sample code
With AudioQueues you'll always have a slight delay when filling up the buffer, AudioUnits would be the way to go as you can work with sound instantly.