cdts/xdts-ios 3/TreeHole/Code/Utility/VoiceRecoder/MTChatRecordInputView.h

24 lines
496 B
C
Raw Normal View History

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