我想访问在某个时间点获取变换比例的值。这是动画创作:

    CABasicAnimation *grow = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
    grow.toValue = @1.5f;
    grow.duration = 1;
    grow.autoreverses = YES;
    grow.repeatCount = HUGE_VALF;
    [view.layer addAnimation:grow forKey:@"growAnimation"];

我想例如在用户按下按钮时获取 View 的当前大小。
记录框架或边界始终返回常数值。任何帮助将非常感激 !

最佳答案

CALayer文档非常清楚地描述了presentationLayer:

关于ios - 获取当前的CAAnimation变换值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20244933/

10-09 20:40