| 1234567891011121314151617181920212223242526272829 |
- //
- // VideoRecordProcessView.h
- // TXLiteAVDemo
- //
- // Created by zhangxiang on 2017/9/12.
- // Copyright © 2017年 Tencent. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- static CGFloat MAX_RECORD_TIME = 60.0;
- static CGFloat MIN_RECORD_TIME = 10.0;
- @interface TCVideoRecordProcessView : UIView
- @property (assign, nonatomic) BOOL minimumTimeTipHidden;
- -(void)update:(CGFloat)progress;
- -(void)pause;
- -(void)pauseAtTime:(CGFloat)time;
- -(void)prepareDeletePart;
- -(void)cancelDelete;
- -(void)comfirmDeletePart;
- -(void)deleteAllPart;
- @end
|