我有一个图层,我想修改它的大小。但是有一些事情让我很烦恼。正在修改它的变换属性,与在图层上制作基本动画相同。这是:
layer.transform = CATransform3DMakeScale(0.5, 0.5, 1);
如同:
CABasicAnimation *scale = [CABasicAnimation animationWithKeyPath: @"transform.scale"];
scale.fromValue = [NSNumber numberWithDouble:startScale];
scale.toValue = [NSNumber numberWithDouble:endScale];
[layer addAnimation:scale forKey:@"animateScale"];
另外,是否有一些列表可以让我看到哪些键路径可用于基本动画?