AVAudioRecorder

2024/4/16 7:52:54

iOS之音频录制及播放

1)Demo环境: Swift4.2, Xcode10.1 2)Demo地址: https://github.com/cxymq/RecordForChat 3)AVAudioSession学习记录 https://blog.csdn.net/Crazy_SunShine/article/details/80104838 步骤如下: 1.需要…

iOS AVAudioRecorder简介

1. AVAudioRecorder应用 AVAudioRecorder的主要属性 // 是否在录制中 property(readonly, getterisRecording) BOOL recording; // 录音本地文件地址 property(readonly) NSURL *url; // 录音文件配置 property(readonly) NSDictionary<NSString *, id> *settings;// 录…