1 #import <QuartzCore/CAAnimation.h>
3 @implementation CAPropertyAnimation
5 -initWithKeyPath:(NSString *)keyPath {
7 _keyPath=[keyPath copy];
13 +animationWithKeyPath:(NSString *)keyPath {
14 return [[[self alloc] initWithKeyPath:keyPath] autorelease];
17 -(NSString *)keyPath {
21 -(void)setKeyPath:(NSString *)value {
31 -(void)setAdditive:(BOOL)value {
39 -(void)setCumulative:(BOOL)value {