HXFullScreenCameraPlayView.h 493 B

123456789101112131415161718
  1. //
  2. // HXFullScreenCameraPlayView.h
  3. // HXPhotoPickerExample
  4. //
  5. // Created by Silence on 2017/5/23.
  6. // Copyright © 2017年 Silence. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface HXFullScreenCameraPlayView : UIView
  10. @property (assign, nonatomic) CGFloat progress;
  11. @property (strong, nonatomic) UIColor *color;
  12. @property (assign, nonatomic) NSTimeInterval duration;
  13. - (void)startAnimation;
  14. - (void)clear;
  15. - (instancetype)initWithFrame:(CGRect)frame color:(UIColor *)color;
  16. @end