我可以在 mac os cocoa 中使用 animator 实现动画,比如
[[view animator] setFrame:newFrame];
但我的问题是我必须对一些作为视图属性的点进行动画处理。我可以像下面的 iPhone 代码那样做:
[UIView animateWithDuration:0.3 animations:^{
for (Point point in self.points) {
point.x += 10;
}
} completion:^(BOOL finished) {
}];
}];
我想知道如何在 mac ox cocoa 中做到这一点?