CALayer的子类之CAShapeLayer

一,CAShapeLayer介绍

* CAShapeLayer继承自CALayer,属于QuartzCore框架,可使用CALayer的所有属性。
   CAShapeLayer是在坐标系内绘制贝塞尔曲线的,通过绘制贝塞尔曲线,设置shape(形状)的path(路径),从而绘制各种各样的图形以及不规则图形。因此,使用CAShapeLayer需要与UIBezierPath一起使用。
  UIBezierPath类允许你在自定义的 View 中绘制和渲染由直线和曲线组成的路径.。你可以在初始化的时候直接为你的UIBezierPath指定一个几何图形。
  通俗点就是UIBezierPath用来指定绘制图形路径,而CAShapeLayer就是根据路径来绘图的。
使用CAShapeLayer与贝塞尔曲线可以实现不在view的DrawRect方法中画出一些想要的图形

* 关于CAShapeLayer和DrawRect的比较
  DrawRect:DrawRect属于CoreGraphic框架,占用CPU,消耗性能大
  CAShapeLayer:CAShapeLayer属于CoreAnimation框架,通过GPU来渲染图形,节省性能。动画渲染直接提交给手机GPU,不消耗内存

二,CAShapeLayer属性介绍

CA_CLASS_AVAILABLE (10.6, 3.0, 9.0, 2.0)

@interface CAShapeLayer : CALayer

1、[CAShapeLayer layer].path

/* The path defining the shape to be rendered. If the path extends

 * outside the layer bounds it will not automatically be clipped to the

 * layer, only if the normal layer masking rules cause that. Upon

 * assignment the path is copied. Defaults to null. Animatable.

 * (Note that although the path property is animatable, no implicit

 * animation will be created when the property is changed.) 
 */

@property(nullable) CGPathRef path;

 解释:定义要渲染的形状的路径。 如果路径延伸到图层边界之外,不会自动被图层剪切,则只有在正常的图层遮罩规则才会实现自动剪切。 分配后,路径被复制。 缺省为nil,可动画。 (请注意,虽然path属性是可动画的,但是当属性改变时,不会创建隐式动画。)
 示例代码:

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initUI];
}

-(void)initUI{
    UIBezierPath * path = [UIBezierPath bezierPath];
    [path addArcWithCenter:CGPointMake(200.0, 300.0) radius:100 startAngle:0 endAngle:M_PI * 2 clockwise:YES];
    self.shaperLayer = [CAShapeLayer layer];
    self.shaperLayer.path =path.CGPath;
    self.shaperLayer.strokeColor =[UIColor blueColor].CGColor;
    self.shaperLayer.fillColor = [UIColor redColor].CGColor;
    self.shaperLayer.lineWidth = 2;
    self.shaperLayer.frame     = self.view.bounds;
    [self.view.layer addSublayer:self.shaperLayer];
    [self drawLineAnimation:self.shaperLayer];
}

- (void)drawLineAnimation:(CALayer*)layer{
    CABasicAnimation * bas =[CABasicAnimation animationWithKeyPath:@"strokeEnd"];
    bas.duration = 3;
    bas.fromValue =[NSNumber numberWithInteger:0];
    bas.toValue   =[NSNumber numberWithInteger:1];
    [layer addAnimation:bas forKey:@"key"];
}

 
演示:

 

2、[CAShapeLayer layer].fillColor

/* The color to fill the path, or nil for no fill. Defaults to opaque

 * black. Animatable. */

@property(nullable) CGColorRef fillColor;

 解释:官方解释是填充路径的颜色,或无填充时为nil。默认颜色为不透明的黑色,可动画。
 示例代码:

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initUI];
}

-(void)initUI{
    UIBezierPath * path = [UIBezierPath bezierPath];
    [path addArcWithCenter:CGPointMake(200.0, 300.0) radius:100 startAngle:0 endAngle:M_PI * 2 clockwise:YES];
    self.shaperLayer = [CAShapeLayer layer];
    self.shaperLayer.path =path.CGPath;
    self.shaperLayer.strokeColor =[UIColor blueColor].CGColor;
    self.shaperLayer.fillColor = [UIColor redColor].CGColor;
    self.shaperLayer.lineWidth = 2;
    self.shaperLayer.frame     = self.view.bounds;
    [self.view.layer addSublayer:self.shaperLayer];
    [self drawLineAnimation:self.shaperLayer];
}

- (void)drawLineAnimation:(CALayer*)layer{
    CABasicAnimation * bas =[CABasicAnimation animationWithKeyPath:@"fillColor"];
    bas.duration = 3;
    bas.fromValue =(__bridge id)[UIColor redColor].CGColor;
    bas.toValue   =(__bridge id)[UIColor blueColor].CGColor;
    [layer addAnimation:bas forKey:@"key"];
}

 演示:



3、[CAShapeLayer layer].fillRule

/* The fill rule used when filling the path. Options are `non-zero' and

 * `even-odd'. Defaults to `non-zero'. */

@property(copy) NSString *fillRule;

  解释:官方解释是当在填充颜色的时候则就需要这种填充规则,值有两种,非零和奇偶数,但默认是非零值。     

  属性用于指定使用哪一种算法去判断画布上的某区域是否属于该图形“内部” (内部区域将被填充)。对一个简单的无交叉的路径,哪块区域是“内部” 是很直观清除的。但是,对一个复杂的路径,比如自相交或者一个子路径包围另一个子路径,“内部”的理解就不那么明确了。

kCAFillRuleNonZero

字面意思是“非零”。按该规则,要判断一个点是否在图形内,从该点作任意方向的一条射线,然后检测射线与图形路径的交点情况。从0开始计数,路径从左向右穿过射线则计数加1,从右向左穿过射线则计数减1。得出计数结果后,如果结果是0,则认为点在图形外部,否则认为在内部。下图演示了kCAFillRuleNonZero规则:

kCAFillRuleEvenOdd

字面意思是“奇偶”。按该规则,要判断一个点是否在图形内,从该点作任意方向的一条射线,然后检测射线与图形路径的交点的数量。如果结果是奇数则认为点在内部,是偶数则认为点在外部。下图演示了kCAFillRuleEvenOdd 规则:

4、[CAShapeLayer layer].strokeColor 

/* The color to fill the path's stroked outline, or nil for no stroking.

 * Defaults to nil. Animatable. 
 */

@property(nullable) CGColorRef strokeColor;

 解释:这个属性用于设置描边的颜色,如果不需要描边就传nil,默认就是nil,该属性还是可动画的。

 代码示例:
 

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initUI];
}

-(void)initUI{
    UIBezierPath * path = [UIBezierPath bezierPath];
    [path addArcWithCenter:CGPointMake(200.0, 300.0) radius:100 startAngle:0 endAngle:M_PI * 2 clockwise:YES];
    self.shaperLayer = [CAShapeLayer layer];
    self.shaperLayer.path =path.CGPath;
    self.shaperLayer.strokeColor =[UIColor blueColor].CGColor;
    self.shaperLayer.fillColor = [UIColor redColor].CGColor;
    self.shaperLayer.lineWidth = 2;
    self.shaperLayer.frame     = self.view.bounds;
    [self.view.layer addSublayer:self.shaperLayer];
}

 演示:


5、[CAShapeLayer layer].strokeStart  与  [CAShapeLayer layer].strokeEnd

/* These values define the subregion of the path used to draw the

 * stroked outline. The values must be in the range [0,1] with zero

 * representing the start of the path and one the end. Values in

 * between zero and one are interpolated linearly along the path

 * length. strokeStart defaults to zero and strokeEnd to one. Both are

 * animatable. 
 */

@property CGFloat strokeStart;

@property CGFloat strokeEnd;

  解释:这些值定义了用于绘制描边轮廓的路径的子区域。 值必须在[0,1]的范围内,其中0表示路径的开始,1表示结束。 介于0和1之间的值沿路径长度线性插值。strokeStart默认为零,strokeEnd默认为1。 两者都是可以动画的。
  代码:

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initUI];
}

-(void)initUI{
    UIBezierPath * path = [UIBezierPath bezierPath];
    [path addArcWithCenter:CGPointMake(200.0, 300.0) radius:100 startAngle:0 endAngle:M_PI * 2 clockwise:YES];
    self.shaperLayer = [CAShapeLayer layer];
    self.shaperLayer.path =path.CGPath;
    self.shaperLayer.strokeColor =[UIColor blueColor].CGColor;
    self.shaperLayer.fillColor = [UIColor redColor].CGColor;
    self.shaperLayer.fillRule  = kCAFillRuleEvenOdd;
    self.shaperLayer.lineWidth = 2;
    self.shaperLayer.strokeStart = 0.1;
    self.shaperLayer.frame     = self.view.bounds;
    [self.view.layer addSublayer:self.shaperLayer];
    [self drawLineAnimation:self.shaperLayer];
}

- (void)drawLineAnimation:(CALayer*)layer{
    CABasicAnimation * bas =[CABasicAnimation animationWithKeyPath:@"strokeEnd"];
    bas.duration = 3;
    bas.fromValue =@0.1;
    bas.toValue   =@0.9;
    [layer addAnimation:bas forKey:@"key"];
}

 演示:


6、[CAShapeLayer layer].lineWidth 和 [CAShapeLayer layer].miterLimit

/* The line width used when stroking the path. Defaults to one.

 * Animatable. 
 */

@property CGFloat lineWidth;

/* The miter limit used when stroking the path. Defaults to ten.

 * Animatable. 
 */ 

@property CGFloat miterLimit;

 

 解释:官方解释是lineWidth为线的宽度,默认为1;miterLimit为最大斜接长度。斜接长度指的是在两条线交汇处和外交之间的距离。只有lineJoin属性为kCALineJoinMiter时miterLimit才有效。边角的角度越小,斜接长度就会越大。为了避免斜接长度过长,我们可以使用miterLimit属性。如果斜接长度超过miterLimit的值,边角会以lineJoin的“bevel”即kCALineJoinBevel类型来显示。

 代码:

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initUI];
}

-(void)initUI{
    UIBezierPath * path = [UIBezierPath bezierPath];
    [path addArcWithCenter:CGPointMake(200.0, 300.0) radius:100 startAngle:0 endAngle:M_PI * 2 clockwise:YES];
    self.shaperLayer = [CAShapeLayer layer];
    self.shaperLayer.path =path.CGPath;
    self.shaperLayer.strokeColor =[UIColor blueColor].CGColor;
    self.shaperLayer.fillColor = [UIColor redColor].CGColor;
    self.shaperLayer.fillRule  = kCAFillRuleEvenOdd;
    self.shaperLayer.lineWidth = 2;
    self.shaperLayer.strokeStart = 0.1;
    self.shaperLayer.frame     = self.view.bounds;
    [self.view.layer addSublayer:self.shaperLayer];
    [self drawLineAnimation:self.shaperLayer];
}

- (void)drawLineAnimation:(CALayer*)layer{
    CABasicAnimation * bas =[CABasicAnimation animationWithKeyPath:@"lineWidth"];
    bas.duration = 3;
    bas.fromValue =@3;
    bas.toValue   =@10;
    [layer addAnimation:bas forKey:@"key"];
}

  演示:


7、[CAShapeLayer layer].lineCap 与 [CAShapeLayer layer].lineJoin

/* The cap style used when stroking the path. Options are `butt', `round'

 * and `square'. Defaults to `butt'. 
 */ 

@property(copy) NSString *lineCap;

/* The join style used when stroking the path. Options are `miter', `round'

 * and `bevel'. Defaults to `miter'. 
 */

@property(copy) NSString *lineJoin;

解释:

lineCap为线端点类型,值有三个类型,分别为kCALineCapButt 、kCALineCapRound 、kCALineCapSquare,默认值为Butt;

lineJoin为线连接类型,其值也有三个类型,分别为kCALineJoinMiter、kCALineJoinRound、kCALineJoinBevel,默认值是Miter。

 

8、[CAShapeLayer layer].lineDashPhase 与 [CAShapeLayer layer].lineDashPattern

/* The phase of the dashing pattern applied when creating the stroke.

 * Defaults to zero. Animatable. 
 */ 

@property CGFloat lineDashPhase;

/* The dash pattern (an array of NSNumbers) applied when creating the

 * stroked version of the path. Defaults to nil. 
 */

@property(nullable, copy) NSArray<NSNumber *> *lineDashPattern;

 

官方解释是lineDashPhase为线型模版的起始位置;lineDashPattern为线性模版,这是一个NSNumber的数组,索引从1开始记,奇数位数值表示实线长度,偶数位数值表示空白长度。
lineDashPhase:
设置边线的样式,默认为实线,该数组为一个NSNumber数组,数组中的数值依次表示虚线中单个线的长度,和空白的长度,如:数组@[2,2,3,4] 表示 有长度为2的线,长度为2的空白,长度为3的线,长度为4的空白,不断循环后组成的虚线。
 
 
 
 


lineDashPattern
:
边线样式的起始位置,即,如果lineDashPattern设置为@[@2, @2, @3, @4],lineDashPhase即为第一个长度为2的线的起始位置,默认值为0,可动画
注:fillColor与strokeColor都是在有UIBezierPath参数配置的情况下才能发生作用

代码:
- (void)viewDidLoad {
    [super viewDidLoad];
    [self initUI];
}

-(void)initUI{
    UIBezierPath * path = [UIBezierPath bezierPath];
    [path addArcWithCenter:CGPointMake(200.0, 300.0) radius:100 startAngle:0 endAngle:M_PI * 2 clockwise:YES];
    self.shaperLayer = [CAShapeLayer layer];
    self.shaperLayer.path =path.CGPath;
    self.shaperLayer.strokeColor =[UIColor blueColor].CGColor;
    self.shaperLayer.fillColor = [UIColor redColor].CGColor;
    self.shaperLayer.fillRule  = kCAFillRuleEvenOdd;
    self.shaperLayer.lineWidth = 2;
    self.shaperLayer.frame     = self.view.bounds;
    self.shaperLayer.lineDashPattern = @[@2, @3, @4, @5];
    self.shaperLayer.lineDashPhase   = 1;
    [self.view.layer addSublayer:self.shaperLayer];

}

演示:







 



posted on 2018-08-13 20:15  梁飞宇  阅读(1110)  评论(0编辑  收藏  举报