YOUPAILZBigCastSoundRecordView.h 909 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YOUPAILZBigCastSoundRecordView.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/7/9.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZSoundRecordHeader.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZBigCastSoundRecordView : UIView
  12. @property (nonatomic, assign) NSInteger youpaipminTimer; // 最少时长
  13. @property (nonatomic, assign) NSInteger youpaipmaxTimer; // 最大时长
  14. @property (nonatomic, assign) LZAudioType youpaiptype; // 需要转出的文件格式
  15. @property (nonatomic, weak)UILabel *youpaipdescL;
  16. @property (nonatomic, weak)UIButton *youpaipleftBtn;
  17. @property (nonatomic, weak)UIButton *youpaipcenterBtn;
  18. @property (nonatomic, weak)UIButton *youpaiprightBtn;
  19. @property (nonatomic, copy) void (^soundRecordFinishBlock)(NSURL *fileURL,NSInteger duration); /// 录制完成
  20. /// 停止录音
  21. - (void)youpaifstopSoundRecord;
  22. @end
  23. NS_ASSUME_NONNULL_END