1. 给视图一个像心跳的动画
CABasicAnimation *anim = [CABasicAnimation animationWithKeyPath:@"transform"];
anim.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(1.1, 1.1, 1)];
anim.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity];
anim.repeatCount = HUGE_VALF;
anim.autoreverses = YES;
[lp.view.layer addAnimation:anim forKey:nil];2. 取消
[lp.view.layer removeAllAnimations];

本文介绍如何使用Core Animation为iOS视图实现类似心跳的缩放动画效果,并提供了取消动画的方法。

691

被折叠的 条评论
为什么被折叠?



