CAShapeLayer和CAGradientLayer


转自KooFrank'sBlog

 

两个动画效果来了解一下CALayer的两个重要的subClassCAGradientLayerCAShapeLayer。微视录制视频的时候那个进度效果和Spark相机类似,但是个人还是比较喜欢Spark相机的录制的效果。

 

CAShapeLayer

 

我们做一个和Spark相机一样的圆形进度,每一段有一种颜色,标识不同时间段录的视频。

 

首先,我们创建一个UIView的子类叫RecordingCircleOverlayView这样看起来比较有意义,然后我们看到圆形进度条有一个底色是灰色的圆形轨迹,所以我们创建一个CAShapeLayer,然后提供一个CGPathRef给它的path属性,我们使用UIBezierPath这个类的bezierPathWithArcCenter:radius:startAngle:endAngle:clockwise:这个方法给CAShapeLayer提供path

 

图中我们可以看到有彩色一些片段,我们使用另外一个CAShapeLayer和同样的CGPathRef作为背景层,由于是同样的Path,所以我们给UIBezierPath创建一个属性,这样不用每次都重复创建。

1 CGPoint arcCenter = CGPointMake(CGRectGetMidY(self.bounds), CGRectGetMidX(self.bounds)); 

2 CGFloat radius = CGRectGetMidX(self.bounds) - insets.top - insets.bottom; 

3  

4 self.circlePath = [UIBezierPath bezierPathWithArcCenter:arcCenter 

5 radius:radius 

6 startAngle:M_PI 

7 endAngle:-M_PI 

8 clockwise:NO]; 

开始角度M_PI和结束角度-M_PISpark相机是一样的逆时针方向,然后我们再创建一个背景层

1 CAShapeLayer *backgroundLayer = [CAShapeLayerlayer]; 

2 backgroundLayer.path = self.circlePath.CGPath; 

3 backgroundLayer.strokeColor = [[UIColor lightGrayColor] CGColor]; 

4 backgroundLayer.fillColor = [[UIColorclearColor] CGColor]; 

5 backgroundLayer.lineWidth = self.strokeWidth; 

然后我们把backgroundLayer添加为RecordingCircleOverlayViewsubLayer

1 [self.layer addSublayer:backgroundLayer]; 

如果我们build运行成功的话应该是这样的。

 

现在我们需要一个方法来实现开始和停止进度,如果我们回头去看Spark Camera,我们需要按下手指才会开始松开结束,首先UITapGestureRecognizerUIControlEventTouchUpInside没有方法检测按下和松开,但是我们可以用UIControlEventTouchDown,但是我们在Reveal里面并没有看到它是这么做的,所以最后决定使用复写UIRespondertouchesBegan:WithEvent:and touchesEnded:WithEvent:方法来实现。

 

有个这个方法后,我们可以控制CAShapeLayerstrokeEnd的属性大小来实现动画效果,首页我们先设置它的值为0然后把这个layer添加作为子类。

1 CAShapeLayer *progressLayer = [CAShapeLayerlayer]; 

2 progressLayer.path = self.circlePath.CGPath; 

3 progressLayer.strokeColor = [[selfrandomColor] CGColor]; 

4 progressLayer.fillColor = [[UIColorclearColor] CGColor]; 

5 progressLayer.lineWidth = self.strokeWidth; 

6 progressLayer.strokeEnd = 0.f; 

然后我们发现有多个CAShapeLayer分别代表不同的段,而且每个CAShapeLayer都有自己的strokeEnd,所以我们创建一个数组,把每一个CAShapeLayer添加到数组里。

1 [self.progressLayers addObject:progressLayer]; 

继而我们又需要一个属性代表当前的正在增加可以动画的片段,所以我们添加一个属性来记录当前的进度的layer

1 self.currentProgressLayer = progressLayer; 

所以最后方法看起来是这样的。

1 - (void)addNewLayer 

2

3     CAShapeLayer *progressLayer = [CAShapeLayer layer]; 

4     progressLayer.path = self.circlePath.CGPath; 

5     progressLayer.strokeColor = [[self randomColor] CGColor]; 

6     progressLayer.fillColor = [[UIColor clearColor] CGColor]; 

7     progressLayer.lineWidth = self.strokeWidth; 

8     progressLayer.strokeEnd = 0.f; 

9  

10          [self.layer addSublayer:progressLayer]; 

11          [self.progressLayers addObject:progressLayer]; 

12       

13          self.currentProgressLayer = progressLayer; 

14     

为了让它可以有动画,我们有两个重点,其一我们可以使用rotationtransform属性,但是我们使用CAShapeLayerstrokeStartstrokeEnd结合起来实现动画,其二停止动画后我们可以使用截图当前的状态同时移除动画,这样就可以保留每个状态的颜色。为了实现这些,我们使用CABasicAnimationCAlayer的属性presentationLayer,直接上代码。

1 - (void)updateAnimations 

2

3     CGFloat duration = self.duration * (1.f - [[self.progressLayers firstObject] strokeEnd]); 

4     CGFloat strokeEndFinal = 1.f; 

5  

6     for (CAShapeLayer *progressLayer in self.progressLayers) 

7     { 

8         CABasicAnimation *strokeEndAnimation = nil; 

9         strokeEndAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"]; 

10              strokeEndAnimation.duration = duration; 

11              strokeEndAnimation.fromValue = @(progressLayer.strokeEnd); 

12              strokeEndAnimation.toValue = @(strokeEndFinal); 

13              strokeEndAnimation.autoreverses = NO; 

14              strokeEndAnimation.repeatCount = 0.f; 

15              strokeEndAnimation.fillMode = kCAFillModeForwards; 

16              strokeEndAnimation.removedOnCompletion = NO; 

17              strokeEndAnimation.delegate = self; 

18              [progressLayer addAnimation:strokeEndAnimation forKey:@"strokeEndAnimation"]; 

19       

20              strokeEndFinal -= (progressLayer.strokeEnd - progressLayer.strokeStart); 

21       

22              if (progressLayer != self.currentProgressLayer) 

23              { 

24                  CABasicAnimation *strokeStartAnimation = nil; 

25                  strokeStartAnimation = [CABasicAnimation animationWithKeyPath:@"strokeStart"]; 

26                  strokeStartAnimation.duration = duration; 

27                  strokeStartAnimation.fromValue = @(progressLayer.strokeStart); 

28                  strokeStartAnimation.toValue = @(strokeEndFinal); 

29                  strokeStartAnimation.autoreverses = NO; 

30                  strokeStartAnimation.repeatCount = 0.f; 

31                  strokeStartAnimation.fillMode = kCAFillModeForwards; 

32                  strokeStartAnimation.removedOnCompletion = NO; 

33                  [progressLayer addAnimation:strokeStartAnimation forKey:@"strokeStartAnimation"]; 

34              } 

35          } 

36          CABasicAnimation *backgroundLayerAnimation = [CABasicAnimation animationWithKeyPath:@"strokeStart"]; 

37          backgroundLayerAnimation.duration = duration; 

38          backgroundLayerAnimation.fromValue = @(self.backgroundLayer.strokeStart); 

39          backgroundLayerAnimation.toValue = @(1.f); 

40          backgroundLayerAnimation.autoreverses = NO; 

41          backgroundLayerAnimation.repeatCount = 0.f; 

42          backgroundLayerAnimation.fillMode = kCAFillModeForwards; 

43          backgroundLayerAnimation.removedOnCompletion = NO; 

44          backgroundLayerAnimation.delegate = self; 

45          [self.backgroundLayer addAnimation:backgroundLayerAnimation forKey:@"strokeStartAnimation"]; 

46     

上面代码中我们看到我们遍历了所有的CAShapeLayer,给每个strokeEnd添加了CABasicAnimation动画,然后给不是当前的layerstrokeStart属性添加了一个动画。再来看看duration,假设一圈代表45秒钟,这个意味着每次停止之后又开始的话duration肯定是减少的,所以用duration代表一圈剩余的可以录制的时间,再看strekeEndFinal,假设有很多段,肯定不是每个段的strkeEnd都是1所以这个是用来标识每段可以达到的最终距离一圈为(0-1)。最后我们需要更新backgroundlayer除去有彩色段剩余的地方。

你可能注意到上面的代码里面并没有移除动画,所以对于显示每一个CAShapeLayer我们设置都是通过layerspresentationLayer设置strokeStartstrokeEnd,然后移除CAShapeLayer上的所有动画。

 

presentationLayer在文档中是这么说的:

 

“Whilean animation is in progress, you can retrieve this object and use it to get thecurrent values for those animations.”

 

所以把上面所说的结合起来,代码应该是这样的。

1 - (void)removeAnimations 

2

3     for (CAShapeLayer *progressLayer in self.progressLayers) 

4     { 

5         progressLayer.strokeStart = [progressLayer.presentationLayer strokeStart]; 

6         progressLayer.strokeEnd = [progressLayer.presentationLayer strokeEnd]; 

7         [progressLayer removeAllAnimations]; 

8     } 

9     self.backgroundLayer.strokeStart = [self.backgroundLayer.presentationLayer strokeStart]; 

10          [self.backgroundLayer removeAllAnimations]; 

11     

最后,还有一个问题是我们需要确保我们完成了动画以后手指按下不要保持添加layer和更新动画这些操作,所以我们可以设置一个代理方法像这样,就大功告成了。

1 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag 

2

3     if (self.hasFinishedAnimating == NO && flag) 

4     { 

5         [self removeAnimations]; 

6         self.finishedAnimating = flag; 

7     } 

8

最后你可以在github上面下载这个项目。

 

CAGradientLayer

 

首页我们创建一个UIView的子类,然后我们使用CAGradientLayer作为默认的CALayer

1 + (Class)layerClass { 

2     return [CAGradientLayer class]; 

3

CAGradientLayerCALayer的一个子类,添加了一些额外的属性,我们将是使用colors,startPoint,endPoint这些来创建一个有梯度的动画.

现在有几个方法来实现这种彩色的效果,一种是我现在将要使用的创建一个包含UIColor的数组,有不同的色调的值,在你的initWithFrame方法里添加一下代码:

1 // Use a horizontal gradient  

2 CAGradientLayer *layer = (id)[self layer]; 

3 [layer setStartPoint:CGPointMake(0.0, 0.5)]; 

4 [layer setEndPoint:CGPointMake(1.0, 0.5)]; 

5  

6 // Create colors using hues in +5 increments 

7 NSMutableArray *colors = [NSMutableArray array]; 

8 for (NSInteger hue = 0; hue <= 360; hue += 5) { 

9  

10          UIColor *color; 

11          color = [UIColor colorWithHue:1.0 * hue / 360.0 

12                             saturation:1.0 

13                             brightness:1.0 

14                                  alpha:1.0]; 

15          [colors addObject:(id)[color CGColor]]; 

16     

17      [layer setColors:[NSArray arrayWithArray:colors]]; 

现在运行你可以看见一个水平光谱图,下一步创建移动的效果,我们可以遍历这个颜色的数组使用layeranimation,一个动画结束的时候会前面的颜色方法最后重复这个进度,方法是这样:

1 - (void)performAnimation { 

// 自己添加

self.progress += 0.5;


2     // Move the last color in the array to the front 

3     // shifting all the other colors. 

4     CAGradientLayer *layer = (id)[self layer]; 

5     NSMutableArray *mutable = [[layer colors] mutableCopy]; 

6     id lastColor = [[mutable lastObject] retain]; 

7     [mutable removeLastObject]; 

8     [mutable insertObject:lastColor atIndex:0]; 

9     [lastColor release]; 

10          NSArray *shiftedColors = [NSArray arrayWithArray:mutable]; 

11          [mutable release]; 

12       

13          // Update the colors on the model layer 

14          [layer setColors:shiftedColors]; 

15       

16          // Create an animation to slowly move the gradient left to right. 

17          CABasicAnimation *animation; 

18          animation = [CABasicAnimation animationWithKeyPath:@"colors"]; 

19          [animation setToValue:shiftedColors]; 

20          [animation setDuration:0.08]; 

21          [animation setRemovedOnCompletion:YES]; 

22          [animation setFillMode:kCAFillModeForwards]; 

23          [animation setDelegate:self]; 

24          [layer addAnimation:animation forKey:@"animateGradient"]; 

25     

26       

27      - (void)animationDidStop:(CAAnimation *)animation finished:(BOOL)flag { 

28          [self performAnimation]; 

29     

为了增加一个标识进度的进行,我们可以使用mask属性来屏蔽一部分,在头文件中添加两个属性:

1 @property (nonatomic, readonly) CALayer *maskLayer; 

2 @property (nonatomic, assign) CGFloat progress; 

然后在initWithFrame:里面添加:

// 自己添加

// 源代码里没有写这个,这个动画想起作用,主要还是控制 progress 的值

        self.progress = 0.00;

        

        [self performAniamtion];


1 maskLayer = [CALayer layer]; 

2 [maskLayer setFrame:CGRectMake(0, 0, 0, frame.size.height)]; 

3 [maskLayer setBackgroundColor:[[UIColor blackColor] CGColor]]; 

4 [layer setMask:maskLayer]; 

创建一个宽度为0mask覆盖整个Viewmask的颜色不重要,当我们progress属性更新的时候我们会增加它的宽度,所以复写setProgress:方法像下面这样:

1 - (void)setProgress:(CGFloat)value { 

2     if (progress != value) { 

3         // Progress values go from 0.0 to 1.0 

4         progress = MIN(1.0, fabs(value)); 

5         [self setNeedsLayout]; 

6     } 

7

8  

9 - (void)layoutSubviews { 

10          // Resize our mask layer based on the current progress 

11          CGRect maskRect = [maskLayer frame]; 

12          maskRect.size.width = CGRectGetWidth([self bounds]) * progress; 

13          [maskLayer setFrame:maskRect]; 

14     

现在当我们设置progress值的时候我们要确保它在01之间,然后下一步在layoutSubviews里面我们重新定义mask的值。

 

参考:

 

Spark Camera’s recording meter

 

Animatedprogress view with CAGradientLayer

CocoaChina是全球最大的苹果开发中文社区,官方微信每日定时推送各种精彩的研发教程资源和工具,介绍app推广营销经验,最新企业招聘和外包信息,以及Cocos2d引擎、CocosStudio开发工具包的最新动态及培训信息。关注微信可以第一时间了解最新产品和服务动态,微信在手,天下我有!

请搜索微信号“CocoaChina”关注我们!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值