TCVideoRecordProcessView.h 544 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // VideoRecordProcessView.h
  3. // TXLiteAVDemo
  4. //
  5. // Created by zhangxiang on 2017/9/12.
  6. // Copyright © 2017年 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. static CGFloat MAX_RECORD_TIME = 60.0;
  10. static CGFloat MIN_RECORD_TIME = 10.0;
  11. @interface TCVideoRecordProcessView : UIView
  12. @property (assign, nonatomic) BOOL minimumTimeTipHidden;
  13. -(void)update:(CGFloat)progress;
  14. -(void)pause;
  15. -(void)pauseAtTime:(CGFloat)time;
  16. -(void)prepareDeletePart;
  17. -(void)cancelDelete;
  18. -(void)comfirmDeletePart;
  19. -(void)deleteAllPart;
  20. @end