UIView 圆形遮罩动画
Posted
技术标签:
【中文标题】UIView 圆形遮罩动画【英文标题】:UIView circle mask animation 【发布时间】:2015-07-22 12:35:12 【问题描述】:我有一个抽象的奇怪形状的 UIView。 我需要显示一个平滑外观动画。
我假设我应该将该动画应用于该视图上方的蒙版。 面具将是圆形的。 所以用户将看到 1'2'3'4' 序列。 我该如何实施? 我想我应该应用一些仿射变换 到蒙版视图。在那种情况下,面具的原始形状应该是什么? 一条竖线?
【问题讨论】:
【参考方案1】:一个简单的例子,假设我有一个100*100的imageview
,
注意:为简单起见,我使用硬编码数字
CAShapeLayer * maskLayer = [CAShapeLayer layer];
maskLayer.bounds = CGRectMake(0, 0, 100, 100);
maskLayer.position = CGPointMake(50, 50);
UIBezierPath * path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(50.0, 50.0) radius:50 startAngle:0 endAngle:M_PI *2 clockwise:true];
maskLayer.path = path.CGPath;
maskLayer.fillColor = [UIColor clearColor].CGColor;
maskLayer.strokeColor = [UIColor blackColor].CGColor;
maskLayer.strokeEnd = 0.0;
maskLayer.lineWidth = 100;
self.imageview.layer.mask = maskLayer;
CABasicAnimation * animation = [CABasicAnimation animation];
animation.keyPath = @"strokeEnd";
animation.toValue = @(1.0);
animation.duration = 2.0;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
animation.fillMode = kCAFillModeForwards;
animation.removedOnCompletion = NO;
[maskLayer addAnimation:animation forKey:@"keyFrame"];
【讨论】:
我写了一个简单的库来使蒙版动画更容易。github.com/LeoMobileDeveloper/LeoMaskAnimationKit以上是关于UIView 圆形遮罩动画的主要内容,如果未能解决你的问题,请参考以下文章
在 Core Animation 中为圆形箭头遮罩的长度设置动画