AVFoundation - 音频录制

文章目录


需要调用到麦克风方法,别忘记添加 Privacy - Microphone Usage Description

@interface AudioRecorder ()<AVAudioRecorderDelegate>

@property (strong, nonatomic) AVAudioRecorder *recorder;

@end

@implementation AudioRecorder

- (void

你可能感兴趣的:(Apple,开发,音视频,AVFoundation,录音,AudioRecorder)