iOS-CALayer 应用

前言,编写了一些有关 CALayer 的应用。下载进度条控件、UIImageView 淡入淡出切换图片效果、复杂遮罩效果、音量条效果。

一、下载进度条控件

  • 1.创建 CALayer 控件
  • 2.直接修改 CALayer 的 frame 值执行隐式动画,实现进度条效果。
  • 3.获取下载进度数据(本次使用计时器模拟动态数据)
  • 4.将 CALayer 封装进 UIView 的子类中。

代码示例:

@property (nonatomic, strong) CALayer *progressBarLayer;

- (void)createProgressBar{
    _progressBarLayer = [CALayer layer];
    _progressBarLayer.frame = CGRectMake(50, 50, 200, 4);
    _progressBarLayer.backgroundColor = [UIColor orangeColor].CGColor;
    _progressBarLayer.cornerRadius = 2.0;
    [self.view.layer addSublayer:_progressBarLayer];
    [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(getProgressNum) userInfo:nil repeats:YES];
}
- (void)getProgressNum{
    _progressBarLayer.frame = CGRectMake(50, 50, arc4random()%200, 4);
}

效果展示:

下载进度条.gif

二、UIImageView 淡入淡出切换图片效果

  • 1.操作 UIImageView 的 CALayer 修改其 bounds 值进行显式动画
  • 2.修改 UIImageView 的 CALayer 中的 contents 属性实现切换图片的动画
  • 3.使用 CAAnimationGroup 将 bounds 动画与 contents 动画组合起来
  • 4.效果封装进 UIView 的子类中。
    创建 CALayer
- (void)createImgLayer{
    _imgLayer = [CALayer layer];
    _imgLayer.frame = CGRectMake(50, 50, 100, 200);
    [self.view.layer addSublayer:_imgLayer];
    _imgLayer.contents = (__bridge id)([UIImage imageNamed:@"1"].CGImage);
    [self performSelector:@selector(imgAnimation) withObject:nil afterDelay:2.0];
}
2.1 方法一:隐式动画

无法控制持续时间等等的参数。动画执行时间特别迅速,无法控制。

- (void)imgAnimation{
    // 方法一:执行隐式动画
    _imgLayer.contents = (__bridge id)([UIImage imageNamed:@"2"].CGImage);
}

效果展示

隐式动画.gif

2.2 方法二:显式动画

通过改变基本动画参数来进行图片的转换。

- (void)imgAnimation{
    // 方法二:执行显式动画
    CABasicAnimation *anima = [CABasicAnimation animationWithKeyPath:@"contents"];
    anima.fromValue = self.imgLayer.contents;
    anima.toValue = (__bridge id)([UIImage imageNamed:@"3"].CGImage);

    anima.duration = 2.0;
    // 设定layer动画结束后的contents值
    _imgLayer.contents = (__bridge id)([UIImage imageNamed:@"3"].CGImage);

    // 让layer开始执行动画
    [_imgLayer addAnimation:anima forKey:nil];
}

效果展示

显式动画-修改参数.gif

2.3 方法三:显式动画

通过修改图片和 bounds,配合动画组来实现。

- (void)imgAnimation{   
    //方法三:执行显式动画
    //基于图片的动画实现
    CABasicAnimation *imgAnima = [CABasicAnimation animationWithKeyPath:@"contents"];
    imgAnima.fromValue = self.imgLayer.contents;
    imgAnima.toValue = (__bridge id)([UIImage imageNamed:@"3"].CGImage);
    imgAnima.duration = 1;
    
    CABasicAnimation *boundsAnima = [CABasicAnimation animationWithKeyPath:@"ounds"];
    boundsAnima.fromValue = [NSValue valueWithCGRect:_imgLayer.bounds];
    boundsAnima.toValue = [NSValue valueWithCGRect:CGRectMake(0, 0, _imgLayer.bounds.size.width*0.5, _imgLayer.bounds.size.height*0.5)];
    boundsAnima.duration = 1;
    
    // 将基于图片的动画与基于bounds的动画组合起来
    CAAnimationGroup *groupAnima = [CAAnimationGroup animation];
    groupAnima.animations        = @[imgAnima, boundsAnima];
    groupAnima.duration          = 0.5f;
    
    // 设定layer动画结束后的contents值
    _imgLayer.contents = (__bridge id)([UIImage imageNamed:@"3"].CGImage);
    _imgLayer.bounds   = CGRectMake(0, 0, _imgLayer.bounds.size.width*0.5, _imgLayer.bounds.size.height*0.5);
    
    [_imgLayer addAnimation:groupAnima forKey:nil];

}

执行效果

显式动画-图片/Bounds.gif

三、复杂遮罩效果

  • 1.遮罩原理分析
  • 2.使用 png 图片作为 CALayer 中的 mask 属性的遮罩 Layer
  • 3.移动 layer 的 mask 的 frame 值实现遮罩动画效果


    复杂遮罩效果
//变量声明
@property (nonatomic, strong) CALayer *imageLayer;
@property (nonatomic, strong) CALayer *maskLayer;

@property (nonatomic, strong) UIImage *contentImage;
@property (nonatomic, strong) UIImage *maskImage;

// 处理图片
    self.contentImage = [UIImage imageNamed:@"原始图片"];
    self.maskImage    = [UIImage imageNamed:@"maskLayerContents"];
    
    // 生成maskLayer
    self.maskLayer          = [CALayer layer];
    self.maskLayer.frame    = CGRectMake(0, 0, 427/2.f, 427/2.f);
    self.maskLayer.contents = (__bridge id)(self.maskImage.CGImage);
    
    // 生成contentsLayer
    self.imageLayer          = [CALayer layer];
    self.imageLayer.frame    = CGRectMake(0, 0, 427/2.f, 427/2.f);
    self.imageLayer.contents = (__bridge id)(self.contentImage.CGImage);
    
    // 给contentsLayer设定mask值
    self.imageLayer.mask     = self.maskLayer;
    
    // 将contentsLayer添加到layer中
    [self.view.layer addSublayer:self.imageLayer];

四、音乐音量条效果

1.创建复制层
2.创建一个振动 layer
3.添加动画

- (void)viewDidLoad {
    [super viewDidLoad];

    //复制层
    CAReplicatorLayer *repL = [CAReplicatorLayer  layer];
    repL.frame = self.contentV.bounds;
    [self.contentV.layer addSublayer:repL];
    
    repL.instanceCount = 5;
    repL.instanceTransform = CATransform3DMakeTranslation(45, 0, 0);
    //设置复制出来的子层动画的延时执行时长
    repL.instanceDelay = 1;
    
    //创建一个振动条
    CALayer *layer = [CALayer layer];
    layer.backgroundColor = [UIColor redColor].CGColor;
    layer.bounds = CGRectMake(0, 0, 30, 100);
    layer.anchorPoint = CGPointMake(0, 1);
    layer.position = CGPointMake(0, self.contentV.bounds.size.height);
    [repL addSublayer:layer];
    
    //添加动画
    CABasicAnimation *anim = [CABasicAnimation animation];
    anim.keyPath = @"transform.scale.y";
    anim.toValue = @0;
    anim.repeatCount = MAXFLOAT;
    anim.duration = 1;
    anim.autoreverses = YES;
    [layer addAnimation:anim forKey:nil];

}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,287评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,346评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,277评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,132评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,147评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,106评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,019评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,862评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,301评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,521评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,682评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,405评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,996评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,651评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,803评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,674评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,563评论 2 352

推荐阅读更多精彩内容