NSAnimation
不会让我为NSColor
更改设置动画。我该怎么做呢?
问问题
441 次
2 回答
4
您可以使用blendedColorWithFraction:ofColor:
. 在您的动画方法中(无论哪种方法处理动画的当前值[如果您没有,只需制作一个]):
NSColor *startColor = [NSColor redColor];
NSColor *targetColor = [NSColor blueColor];
float progress = [animation currentValue];
NSColor *currentColor = [startColor blendedColorWithFraction:progress ofColor:targetColor];
编辑:
你可以做的是创建一个NSAnimation
. 您的子类只需要覆盖该setCurrentProgress:
方法以确定您在动画中的距离。您可以以完全相同的方式配置动画的其余部分。在这种情况下,该协议可能有点矫枉过正,但它为您的子类动画提供了一种专门的方式来NSColor
回馈创建动画的类实例。
@protocol MyAnimationTarget
- (void) setColorOfSomething:(NSColor *);
@end
@interface MyAnimation : NSAnimation
@property id<MyAnimationTarget> target;
@property NSColor *color1;
@property NSColor *color2;
@end
@implementation MyAnimation
@synthesize target = _target;
@synthesize color1 = _color1;
@synthesize color2 = _color2;
- (void) setCurrentProgress:(NSAnimationProgress) d
{
[super setCurrentProgress:d];
NSColor *currentColor = [self.color1 blendedColorWithFraction:d ofColor:self.color2];
[self.target setColorOfSomething:currentColor];
}
@end
在您的其他代码中:
MyAnimation *myAnim = [[MyAnimation alloc] init];
myAnim.target = self; // assuming self has a setColorOfSomething: method
myAnim.color1 = [NSColor redColor];
myAnim.color2 = [NSColor blueColor];
// set up other animation stuff
[myAnim startAnimation];
于 2012-11-30T07:36:19.323 回答
0
只是一个建议。也许您可以使用淡入和淡出,如下所示:
begin animation
obj.alpha = 0.0;
commit animation
begin animator
obj.color = newColor;
obj.alpha = 1.0;
commit animation
于 2012-11-30T07:38:26.497 回答