123456789101112131415161718192021222324252627282930 |
- //
- // YOUPAILZBigCastSoundRecordView.h
- // VQU
- //
- // Created by CY on 2021/7/9.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZSoundRecordHeader.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZBigCastSoundRecordView : UIView
- @property (nonatomic, assign) NSInteger youpaipminTimer; // 最少时长
- @property (nonatomic, assign) NSInteger youpaipmaxTimer; // 最大时长
- @property (nonatomic, assign) LZAudioType youpaiptype; // 需要转出的文件格式
- @property (nonatomic, weak)UILabel *youpaipdescL;
- @property (nonatomic, weak)UIButton *youpaipleftBtn;
- @property (nonatomic, weak)UIButton *youpaipcenterBtn;
- @property (nonatomic, weak)UIButton *youpaiprightBtn;
- @property (nonatomic, copy) void (^soundRecordFinishBlock)(NSURL *fileURL,NSInteger duration); /// 录制完成
- /// 停止录音
- - (void)youpaifstopSoundRecord;
- @end
- NS_ASSUME_NONNULL_END
|