【发布时间】:2011-08-25 03:58:27
【问题描述】:
目前我正在开发一个鼓应用程序。唯一剩下要做的就是一个“looper”。
我想通过“录制系统”来制作looper。 (录制鼓声) 我知道如何录制麦克风(我用它来录制声音:
TempRecFile = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithString:@"VoiceFile"]]];
recorder1 = [[AVAudioRecorder alloc] initWithURL:TempRecFile settings:nil error:nil];
[recorder1 setDelegate:self];
[recorder1 prepareToRecord];
[recorder1 record];
)
我怎样才能做同样的事情,但系统声音??
提前致谢!
-DD
【问题讨论】:
-
请有人回答!!赞成票并没有真正的帮助:)
-
给它加个赏金??
标签: iphone audio system record