xcode: How to save audio file after recording audio using AVFoundation

后端 未结 3 1000
别跟我提以往
别跟我提以往 2021-02-02 04:29

I browsed through all kinds of post related to this topic but the answers just do not really help. I used this tutorial to implement recording of audio files and playback. What

3条回答
  •  说谎
    说谎 (楼主)
    2021-02-02 05:09

    You need to stop recording in order to save the data to the file permanently:

    [recorder stop];
    

提交回复
热议问题