CABasicAnimation 使用注意点

 

今天使用 CABasicAnimation 动画效果始终保护出来,搞了半天,跳楼的心都有了,写下了,作为自己的警告!


看下面的这段代码,看似没问题,运行也没问题,可效果就是不出来

    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"backgroundColor"];

    animation.fromValue = (id)[UIColor colorWithRed:0.723 green:0.151 blue:1.000 alpha:1.000];

    animation.toValue = (id)[UIColor colorWithRed:0.491 green:1.000 blue:0.530 alpha:1.000];

    animation.duration = 3.0f;

    animation.autoreverses = YES;

    animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];

    [self.views.layer addAnimation:animation forKey:@"myAnimation"];


再看这段代码,发现不同之处没,问题就在 层的颜色类型为 CGColorRef 所以这里颜色需要转换为  CGColor

    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"backgroundColor"];

    animation.fromValue = (id)[UIColor colorWithRed:0.723 green:0.151 blue:1.000 alpha:1.000].CGColor;

    animation.toValue = (id)[UIColor colorWithRed:0.491 green:1.000 blue:0.530 alpha:1.000].CGColor;

    animation.duration = 3.0f;

    animation.autoreverses = YES;

    animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];

    [self.views.layer addAnimation:animation forKey:@"myAnimation"];

在程序的执行过程中,往往就是因为这些小的问题发现不了,浪费了太多的时间!


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值