DZ_ScaleCircle.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // DZ_ScaleCircle.h
  3. // DZ_Scale_Circle
  4. //
  5. // Created by rongxun02 on 15/12/9.
  6. // Copyright © 2015年 DongZe. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DZ_ScaleCircle : UIView
  10. //线宽.
  11. @property(nonatomic)CGFloat lineWith;
  12. //基准圆环颜色
  13. @property(nonatomic, strong)UIColor *unfillColor;
  14. //中心数据显示标签
  15. @property (nonatomic, strong)UILabel *centerLable;
  16. // 四个区域的颜色
  17. @property (nonatomic, strong)UIColor *firstColor;
  18. @property (nonatomic, strong)UIColor *secondColor;
  19. @property (nonatomic, strong)UIColor *thirdColor;
  20. @property (nonatomic, strong)UIColor *fourthColor;
  21. // 四个区域所占的百分比
  22. @property (nonatomic, assign)float firstScale;
  23. @property (nonatomic, assign)float secondScale;
  24. @property (nonatomic, assign)float thirdScale;
  25. @property (nonatomic, assign)float fourthScale;
  26. //动画时长
  27. @property (nonatomic, assign)float animation_time;
  28. - (instancetype) initWithFrame:(CGRect)frame;
  29. @end
  30. //使用 初始化
  31. //circle = DZ_ScaleCircle(frame: CGRect(x: 54, y: 66, width: 80, height: 80))
  32. //circle.firstColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xfff043, alpha: 1.0)
  33. //circle.firstScale = 0.35
  34. //circle.lineWith = 5
  35. //self.circle.unfillColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xff8881, alpha: 1.0)
  36. //circle.animation_time = 1.0
  37. //
  38. //
  39. //circle.centerLable.text = "今日怀孕几率:7%";
  40. //circle.centerLable.textColor = UIColor.white
  41. //circle.centerLable.font = UIFont.systemFont(ofSize: 12);
  42. //circle.centerLable.numberOfLines = 2