我使用 AVAudioRecorder 录制声音(使用本教程http://www.tumblr.com/tagged/avaudiorecorder?before=1300075871),然后尝试使用 CocosDenshion 播放录制的声音:
CDSoundEngine* soundEngine = [[CDSoundEngine alloc] init];
NSArray *defs = [NSArray arrayWithObjects: [NSNumber numberWithInt:1],nil];
[soundEngine defineSourceGroups:defs];
//......
[soundEngine loadBuffer:1 filePath:[recorder.url path]];
[soundEngine playSound:1 sourceGroupId:0 pitch:2.0f pan:0 gain:1.0f loop:NO];
此代码在模拟器上运行良好,但在设备(iPad 2、iOS 5.1.1)上 - 没有播放声音。我会尝试用 AVAudioPlayer 播放录制的声音——它播放得很好,但我需要调整声音,发现使用 CocosDenshion 是最简单的方法。我应该检查或修复哪些设置或其他设置才能播放录制的声音?