2
0

ZCCCircleProgressView.h 556 B

12345678910111213141516171819202122232425
  1. //
  2. // ZCCCircleProgressView.h
  3. // MOSOBOStudent
  4. //
  5. // Created by mac on 2017/10/23.
  6. // Copyright © 2017年 zcc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ZCCCircleProgressView : UIView
  10. @property(nonatomic, assign)CGFloat lineWidth;
  11. @property(nonatomic, assign)BOOL hasSubProgress;
  12. //跳到进度
  13. - (void)animateToProgress:(CGFloat)progress subProgress:(CGFloat)subProgress;
  14. //进度为0
  15. - (void)animateToZero;
  16. //跳到进度
  17. - (void)setProgress:(CGFloat)progress subProgress:(CGFloat)subProgress;
  18. //进度为0
  19. - (void)reset;
  20. @end