一个可以记录 iOS 应用中的音频注释并将其返回到应用的嵌入类。
安装
pod 'PMAudioRecorderViewController'
或者在 XCode 项目中放入 AudioNoteRecorderViewController
目录的内容。
代码中
#import "AudioRecorderViewController"
...
[AudioNoteRecorderViewController showRecorderMasterViewController:self withFinishedBlock:^(BOOL wasRecordingTaken, NSURL *recordingURL) {
if (wasRecordingTaken) {
// do whatever you want with that URL to the .caf file
}
}];
(C) Paweł Mączewski, [email protected],Twitter: http://twitter.com/pawelmaczewski。