iOS 属性动画的一个分类:CABasicAnimation 基本动画(没有真正修改属性值)

- (IBAction)pressBasicAnimation:(UIButton *)sender {
    //1.创建并指定修改的属性
    //KeyPath :CALayer的属性名,不是所有的属性都可以,只有在头文件中出现animatable的属性才可以;
//    CABasicAnimation *basic = [CABasicAnimation animationWithKeyPath:@"backgroundColor"];
//    [basic setDuration:2];
    
//    CABasicAnimation *basic = [CABasicAnimation animationWithKeyPath:@"bounds.size.height"];
//    [basic setDuration:2];
    //可以修改属性的属性,例如:bounds.size ,bounds.size.width*********
    CABasicAnimation *basic = [CABasicAnimation animationWithKeyPath:@"bounds"];
    [basic setDuration:30];
    //2.修改CALayer属性值()
//    basic.fromValue = (id)[UIColor redColor].CGColor;
//    basic.toValue = (id)[UIColor orangeColor].CGColor;
//    basic.byValue = (id)[UIColor greenColor].CGColor;
//    basic.fromValue = NSStringFromCGRect(CGRectMake(0, 0, 150, 150));
//    basic.fromValue = @0;
//    basic.toValue = @150;
    basic.fromValue = [NSValue valueWithCGRect:CGRectMake(0, 0, 150, 150)];
    basic.toValue = [NSValue valueWithCGRect:CGRectMake(0, 0, 200, 200)];

    
    
    //3.添加动画(key作业是区分动画)
//    [self.changeView.layer addAnimation:basic forKey:@"changColor"];
    [self.changeView.layer addAnimation:basic forKey:@"changColor"];
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值