Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要暂停然后恢复录音,我正在使用 AVAudioRecorder 进行录音……有人知道该怎么做吗?任何帮助将不胜感激!非常感谢和平马西
在初始化和创建一个对象之后AVAudioRecorder,比如说AVAudioRecorder *recorder,简单地调用[recorder record]记录和[recorder pause]暂停。
AVAudioRecorder
AVAudioRecorder *recorder
[recorder record]
[recorder pause]
如果您在单独的方法中调用记录和暂停,例如单击不同的按钮,那么您需要创建recorder一个类级别的变量。
recorder
要暂停录制,请在 上使用以下方法AVAudioRecorder:
- (void)pause
并恢复,使用:
- (BOOL)record
这一切都在文档中......