12345678910111213141516171819202122232425262728293031323334 |
- //
- // YOUPAILZSoundRecordView.h
- // MSYOUPAI
- //
- // Created by CY on 2022/3/16.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZSoundRecordHeader.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZSoundRecordView : 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 *youpaiprecordBtn;
- @property (nonatomic, weak)UIButton *youpaipreRecordBtn;
- @property (nonatomic,assign)NSInteger youpaipaudioTime; // 录音长度
- - (NSURL *)youpaiprecordAudioUrl;
- /// 获取提交url
- - (NSURL*)getSubmitSound;
- /// 停止录音
- - (void)youpaifstopSoundRecord;
- @end
- NS_ASSUME_NONNULL_END
|