24 lines
496 B
Objective-C
24 lines
496 B
Objective-C
//
|
|
// 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
|