DZ_ScaleCircle.m 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. //
  2. // DZ_ScaleCircle.m
  3. // DZ_Scale_Circle
  4. //
  5. // Created by rongxun02 on 15/12/9.
  6. // Copyright © 2015年 DongZe. All rights reserved.
  7. //
  8. #import "DZ_ScaleCircle.h"
  9. @interface DZ_ScaleCircle ()
  10. {
  11. CGFloat radius; // 半径
  12. CGFloat first_animation_time;
  13. CGFloat second_animation_time;
  14. CGFloat third_animation_time;
  15. CGFloat fourth_animation_time;
  16. }
  17. @property(nonatomic) CGPoint CGPoinCerter;
  18. @property(nonatomic) CGFloat endAngle;
  19. @property(nonatomic) BOOL clockwise;
  20. @end
  21. @implementation DZ_ScaleCircle
  22. // 初始化参数
  23. - (instancetype) initWithFrame:(CGRect)frame{
  24. self = [super initWithFrame:frame];
  25. if(self){
  26. [self initCenterLabel];
  27. self.lineWith = 10.0;
  28. self.unfillColor = [UIColor clearColor];
  29. self.clockwise = YES;
  30. self.backgroundColor = [UIColor clearColor];
  31. self.firstColor = [UIColor redColor];
  32. self.secondColor = [UIColor greenColor];
  33. self.thirdColor = [UIColor yellowColor];
  34. self.fourthColor = [UIColor blueColor];
  35. self.animation_time = 5.0;
  36. self.centerLable.text = @"请初始化...";
  37. }
  38. return self;
  39. }
  40. #pragma mark setMethod
  41. /**
  42. * 画图函数
  43. *
  44. * @param rect rect description
  45. */
  46. -(void)drawRect:(CGRect)rect{
  47. [self initData];
  48. [self drawMiddlecircle];
  49. dispatch_queue_t queue = dispatch_queue_create("ldz.demo", DISPATCH_QUEUE_CONCURRENT);
  50. dispatch_async(queue, ^{
  51. dispatch_async(dispatch_get_main_queue(), ^{
  52. [self drawOutCCircle_first];
  53. });
  54. });
  55. dispatch_async(queue, ^{
  56. [NSThread sleepForTimeInterval:first_animation_time];
  57. dispatch_async(dispatch_get_main_queue(), ^{
  58. [self drawOutCCircle_second];
  59. });
  60. });
  61. dispatch_barrier_async(queue, ^{
  62. [NSThread sleepForTimeInterval:second_animation_time];
  63. dispatch_async(dispatch_get_main_queue(), ^{
  64. [self drawOutCCircle_third];
  65. });
  66. });
  67. dispatch_async(queue, ^{
  68. [NSThread sleepForTimeInterval:third_animation_time];
  69. dispatch_async(dispatch_get_main_queue(), ^{
  70. [self drawOutCCircle_fourth];
  71. });
  72. });
  73. }
  74. /*
  75. *中心标签设置
  76. */
  77. - (void)initCenterLabel {
  78. CGFloat center =MIN(self.bounds.size.height/2, self.bounds.size.width/2);
  79. self.CGPoinCerter = CGPointMake(center, center);
  80. self.centerLable = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 2*center, 2*center)];
  81. self.centerLable.textAlignment = NSTextAlignmentCenter;
  82. self.centerLable.backgroundColor = [UIColor clearColor];
  83. self.centerLable.adjustsFontSizeToFitWidth = YES;
  84. self.centerLable.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
  85. self.contentMode = UIViewContentModeRedraw;
  86. [self addSubview: self.centerLable];
  87. }
  88. /**
  89. * 参数设置
  90. */
  91. -(void)initData{
  92. //计算animation时间
  93. first_animation_time = self.animation_time * self.firstScale;
  94. second_animation_time = self.animation_time * self.secondScale;
  95. third_animation_time = self.animation_time * self.thirdScale;
  96. fourth_animation_time = self.animation_time * self.fourthScale;
  97. //半径计算
  98. radius = MIN(self.bounds.size.height/2-self.lineWith/2, self.bounds.size.width/2-self.lineWith/2);
  99. // self.centerLable.font = [UIFont systemFontOfSize:radius/2];
  100. }
  101. /**
  102. * 显示圆环 -- first
  103. */
  104. -(void )drawOutCCircle_first{
  105. UIBezierPath *bPath_first = [UIBezierPath bezierPathWithArcCenter: self.CGPoinCerter radius:radius startAngle: - M_PI / 2 endAngle: M_PI * self.firstScale * 2 - M_PI / 2 clockwise: self.clockwise];
  106. CAShapeLayer *lineLayer_first = [ CAShapeLayer layer ];
  107. lineLayer_first.frame = _centerLable.frame;
  108. lineLayer_first.fillColor = [UIColor clearColor].CGColor;
  109. lineLayer_first.path = bPath_first.CGPath;
  110. lineLayer_first.strokeColor = self.firstColor.CGColor;
  111. lineLayer_first.lineWidth = self.lineWith;
  112. CABasicAnimation *ani = [ CABasicAnimation animationWithKeyPath : NSStringFromSelector ( @selector (strokeEnd))];
  113. ani.fromValue = @0;
  114. ani.toValue = @1;
  115. ani.duration = first_animation_time;
  116. [lineLayer_first addAnimation:ani forKey:NSStringFromSelector(@selector(strokeEnd))];
  117. [self.layer addSublayer: lineLayer_first];
  118. }
  119. /**
  120. * 显示圆环 -- second
  121. */
  122. -(void )drawOutCCircle_second{
  123. UIBezierPath *bPath_second = [UIBezierPath bezierPathWithArcCenter: self.CGPoinCerter radius:radius startAngle: M_PI * self.firstScale * 2 - M_PI / 2 endAngle: M_PI * 2 * (self.firstScale + self.secondScale) - M_PI / 2 clockwise: self.clockwise];
  124. CAShapeLayer *lineLayer_second = [CAShapeLayer layer];
  125. lineLayer_second.frame = _centerLable.frame;
  126. lineLayer_second.fillColor = [UIColor clearColor].CGColor;
  127. lineLayer_second.path = bPath_second.CGPath;
  128. lineLayer_second.strokeColor = self.secondColor.CGColor;
  129. lineLayer_second.lineWidth = self.lineWith;
  130. CABasicAnimation *ani = [ CABasicAnimation animationWithKeyPath : NSStringFromSelector(@selector(strokeEnd))];
  131. ani.fromValue = @0;
  132. ani.toValue = @1;
  133. ani.duration = second_animation_time;
  134. [lineLayer_second addAnimation:ani forKey:NSStringFromSelector(@selector(strokeEnd))];
  135. [self.layer addSublayer: lineLayer_second];
  136. }
  137. /**
  138. * 显示圆环 -- third
  139. */
  140. -(void )drawOutCCircle_third{
  141. UIBezierPath *bPath_third = [UIBezierPath bezierPathWithArcCenter: self.CGPoinCerter radius:radius startAngle: M_PI * 2 * (self.firstScale + self.secondScale) - M_PI / 2 endAngle: M_PI * 2 * (self.firstScale + self.secondScale + self.thirdScale) - M_PI / 2 clockwise: self.clockwise];
  142. CAShapeLayer *lineLayer_third = [CAShapeLayer layer];
  143. lineLayer_third.frame = _centerLable.frame;
  144. lineLayer_third.fillColor = [UIColor clearColor].CGColor;
  145. lineLayer_third.path = bPath_third.CGPath;
  146. lineLayer_third.strokeColor = self.thirdColor.CGColor;
  147. lineLayer_third.lineWidth = self.lineWith;
  148. CABasicAnimation *ani = [ CABasicAnimation animationWithKeyPath : NSStringFromSelector(@selector(strokeEnd))];
  149. ani.fromValue = @0;
  150. ani.toValue = @1;
  151. ani.duration = third_animation_time;
  152. [lineLayer_third addAnimation:ani forKey:NSStringFromSelector(@selector(strokeEnd))];
  153. [self.layer addSublayer: lineLayer_third];
  154. }
  155. /**
  156. * 显示圆环 -- fourth
  157. */
  158. -(void )drawOutCCircle_fourth{
  159. UIBezierPath *bPath_fourth = [UIBezierPath bezierPathWithArcCenter: self.CGPoinCerter radius:radius startAngle: M_PI * 2 * (self.firstScale + self.secondScale + self.thirdScale) - M_PI / 2 endAngle: M_PI * 2 * (self.firstScale + self.secondScale + self.thirdScale + self.fourthScale)- M_PI / 2 clockwise: self.clockwise];
  160. CAShapeLayer *lineLayer_fourth = [CAShapeLayer layer];
  161. lineLayer_fourth.frame = _centerLable.frame;
  162. lineLayer_fourth.fillColor = [UIColor clearColor].CGColor;
  163. lineLayer_fourth.path = bPath_fourth.CGPath;
  164. lineLayer_fourth.strokeColor = self.fourthColor.CGColor;
  165. lineLayer_fourth.lineWidth = self.lineWith;
  166. CABasicAnimation *ani = [ CABasicAnimation animationWithKeyPath : NSStringFromSelector(@selector(strokeEnd))];
  167. ani.fromValue = @0;
  168. ani.toValue = @1;
  169. ani.duration = fourth_animation_time;
  170. [lineLayer_fourth addAnimation:ani forKey:NSStringFromSelector(@selector(strokeEnd))];
  171. [self.layer addSublayer: lineLayer_fourth];
  172. }
  173. /**
  174. * 辅助圆环
  175. */
  176. -(void)drawMiddlecircle{
  177. UIBezierPath *cPath = [UIBezierPath bezierPathWithArcCenter:self.CGPoinCerter radius:radius startAngle:M_PI * 0 endAngle:M_PI * 2 clockwise:self.clockwise];
  178. cPath.lineWidth=self.lineWith;
  179. cPath.lineCapStyle = kCGLineCapRound;
  180. cPath.lineJoinStyle = kCGLineJoinRound;
  181. UIColor *color = self.unfillColor;
  182. [color setStroke];
  183. [cPath stroke];
  184. }
  185. /*
  186. // Only override drawRect: if you perform custom drawing.
  187. // An empty implementation adversely affects performance during animation.
  188. - (void)drawRect:(CGRect)rect {
  189. // Drawing code
  190. }
  191. */
  192. @end