// // AudioRecoderMamager.h // VclustersGemini // // Created by APPLE on 2019/12/25. // Copyright © 2019 APPLE. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol AudioRecoderMamagerDelegate - (void)audioOutPutData:(void *)audioData dataLenth:(NSInteger)lenth; @end @interface RCAudioRecoderMamager : NSObject @property (nonatomic, weak) id delegate; @property (nonatomic, assign, readonly) BOOL isRecoding; - (void)startRecording; - (void)stopRecording; @end NS_ASSUME_NONNULL_END