注意:这是针对 OS X 上的 Cocoa 应用程序,而不是 iOS。
我有一个层支持的 NSButton(NSView 的子类)。我想要做的是使用核心动画旋转那个按钮。我正在使用以下代码来做到这一点:
CABasicAnimation *a = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
a.fromValue = [NSNumber numberWithFloat:0];
a.toValue = [NSNumber numberWithFloat:-M_PI*2];
[_refreshButton.layer setAnchorPoint:CGPointMake(0.5, 0.5)];
a.duration = 1.8; // seconds
a.repeatCount = HUGE_VAL;
[_refreshButton.layer addAnimation:a forKey:nil];
这是可行的,除了当它运行时,图层会向下和向左跳跃,使其中心点位于 NSView 的原点,即 (0,0) 处的左下角。然后图层围绕其中心旋转,但显然跳到左下角是不可接受的。
因此,经过大量阅读,我在 10.8 API 发行说明中找到了这一行:
On 10.8, AppKit will control the following properties on a CALayer
(both when "layer-hosted" or "layer-backed"): geometryFlipped, bounds,
frame (implied), position, anchorPoint, transform, shadow*, hidden,
filters, and compositingFilter. Use the appropriate NSView cover methods
to change these properties.
这意味着 AppKit 在上面的代码中“忽略”了我对 -setAnchorPoint 的调用,而是将该锚点设置为 NSView 的原点 (0,0)。
我的问题是:我该如何解决这个问题?为图层设置anchorPoint的“适当的NSView覆盖方法”是什么(我在NSView上找不到这样的方法)。归根结底,我只想让我的按钮无限期地围绕其中心点旋转。