// // MTChatRecordInputView.h // Meet // // Created by ko1o on 2018/9/12. // Copyright © 2018年 ko1o. All rights reserved. // 录制语音界面 #import @protocol MTChatRecordInputDelegate - (void)outputRecordPath:(NSString *)path recordLength:(int)second; @end @interface MTChatRecordInputView : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, strong) void(^completion)(NSString *path, int second); @end