gpt4 book ai didi

ios - 为什么 `transform.rotation` 可用于 CoreAnimation 但不能使用 getter 访问?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:53:11 26 4
gpt4 key购买 nike

我看到很多旋转 View 的代码如下:

CABasicAnimation *centerToRightRotate
= [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
centerToRightRotate.fromValue = @(0);
centerToRightRotate.toValue = @(M_PI/8);
centerToRightRotate.duration = 0.15;

[self.view.layer addAnimation:centerToRightRotate forKey:nil];

(例如,this question 的许多答案)

但是,当我尝试访问 self.view.layer.transform.rotationself.view.layer.transform.rotation.z 时,编译器会告诉我“CATransform3D 中没有名为‘rotation’的成员”。 docs for CATransform3D也不会将 rotation 显示为实例属性。

我的猜测是 CAAnimation 以某种方式将 transform.rotation 关键路径转换为适当的转换,但我想知道幕后实际发生了什么。这到底是怎么回事?

最佳答案

根据 Key-Value Coding Extensions

Core Animation extends the NSKeyValueCoding protocol as it pertains to the CAAnimation and CALayer classes. This extension adds default values for some keys, expands wrapping conventions, and adds key path support for CGPoint, CGRect, CGSize, and CATransform3D types.

rotation 不是 CATransform3D 的属性。它支持关键路径,以方便地指定要设置动画的数据结构字段。

You can also use these conventions in conjunction with the setValue:forKeyPath: and valueForKeyPath: methods to set and get those fields.

Setting values using key paths is not the same as setting them using Objective-C properties. You cannot use property notation to set transform values. You must use the setValue:forKeyPath: method with the preceding key path strings.

可以使用setValue:forKeyPath:valueForKeyPath:来设置或获取,但不能使用属性表示法。

如果您想知道引擎盖下到底发生了什么,请了解有关 NSKeyValueCoding 的更多信息 here

关于ios - 为什么 `transform.rotation` 可用于 CoreAnimation 但不能使用 getter 访问?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51146584/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com