UGCKitVideoRecordProcessView.h 708 B

1234567891011121314151617181920212223242526272829
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <UIKit/UIKit.h>
  3. #import "UGCKitTheme.h"
  4. @interface UGCKitVideoRecordProcessView : UIView
  5. @property (assign, nonatomic) BOOL minimumTimeTipHidden;
  6. -(instancetype)initWithTheme:(UGCKitTheme *)theme
  7. frame:(CGRect)frame
  8. minDuration:(NSTimeInterval)minDuration
  9. maxDuration:(NSTimeInterval)maxDuration;
  10. - (void)setMinDuration:(NSTimeInterval)minDuration
  11. maxDuration:(NSTimeInterval)maxDuration;
  12. -(void)update:(CGFloat)progress;
  13. -(void)pause;
  14. -(void)pauseAtTime:(CGFloat)time;
  15. -(void)prepareDeletePart;
  16. -(void)cancelDelete;
  17. -(void)comfirmDeletePart;
  18. -(void)deleteAllPart;
  19. @end