iOS之CAReplicatorLayer属性简介和使用

1、CAReplicatorLayer简介

  CAReplicatorLayer用于对图层进行复制,包括图层的动画也能复制!可以看着将某一段事务进行重复!

#import <QuartzCore/CALayer.h>

NS_ASSUME_NONNULL_BEGIN
CA_CLASS_AVAILABLE (10.6, 3.0, 9.0, 2.0)
@interface CAReplicatorLayer : CALayer

//指定图层重复制多少次
@property NSInteger instanceCount;

//设置为YES,图层将保持于CATransformLayer类似的性质和相同的限制
@property BOOL preservesDepth;

//复制延时,一般用在动画上
@property CFTimeInterval instanceDelay;

//3D变换
@property CATransform3D instanceTransform;

//设置多个复制图层的颜色,默认位白色
@property(nullable) CGColorRef instanceColor;

//设置每个复制图层相对上一个复制图层的红色、绿色、蓝色、透明度偏移量
@property float instanceRedOffset;
@property float instanceGreenOffset;
@property float instanceBlueOffset;
@property float instanceAlphaOffset;

@end

NS_ASSUME_NONNULL_END

 

2、CAReplicatorLayer的简单使用

- (void)cirAction{
    CAShapeLayer *sharLayer = [CAShapeLayer layer];
    sharLayer.backgroundColor = [UIColor redColor].CGColor;
    sharLayer.bounds = CGRectMake(0, 0, 20, 20);
    sharLayer.position = CGPointMake(CScreenWidth/2, 150);
    sharLayer.cornerRadius = 10;
    
    CABasicAnimation *ani = [CABasicAnimation animationWithKeyPath:@"transform"];
    ani.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(10, 10, 1)];
    ani.duration = 2;
    
    CABasicAnimation *ani1 = [CABasicAnimation animationWithKeyPath:@"opacity"];
    ani1.fromValue = @1;
    ani1.toValue = @0;
    ani1.duration = 2;
    
    CAAnimationGroup *group = [CAAnimationGroup animation];
    group.animations = @[ani,ani1];
    group.duration = 2;
    group.repeatCount = HUGE;
    [sharLayer addAnimation:group forKey:nil];
    
    CAReplicatorLayer *replayer  =[CAReplicatorLayer layer];
    [replayer addSublayer:sharLayer];
    replayer.instanceCount = 3;
    replayer.instanceDelay = 0.5;
    [self.showView.layer addSublayer:replayer];
}

效果图

 

- (void)alphaAction{
    CAShapeLayer *shapeLayer = [CAShapeLayer layer];
    shapeLayer.backgroundColor = [UIColor redColor].CGColor;
    shapeLayer.bounds = CGRectMake(0, 0, 50, 50);
    shapeLayer.position = CGPointMake(CScreenWidth/2, 50);
    shapeLayer.borderColor = [UIColor whiteColor].CGColor;
    shapeLayer.cornerRadius = 25;
    shapeLayer.borderWidth = 1;
    shapeLayer.transform = CATransform3DMakeScale(.0, .0, .0);


    CABasicAnimation *ani = [CABasicAnimation animationWithKeyPath:@"transform"];
    ani.duration = 2;
    ani.repeatCount = HUGE;
    ani.fromValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(1, 1, 1)];
    ani.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(.1, .1, .1)];
    [shapeLayer addAnimation:ani forKey:nil];

    CAReplicatorLayer *repLayer = [CAReplicatorLayer layer];
    repLayer.frame = CGRectMake(0, 0, CScreenWidth, 300);

    [repLayer addSublayer:shapeLayer];
    repLayer.instanceCount = 20;
    repLayer.instanceDelay = .1;
    repLayer.instanceTransform = CATransform3DMakeRotation(M_PI/10, 0, 0, 1);
    repLayer.instanceAlphaOffset = -0.05;
    [self.showView.layer addSublayer:repLayer];

}

效果图

 

 

 

转载于:https://www.cnblogs.com/xianfeng-zhang/p/7759919.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值