darling-cocotron/QuartzCore/CAAnimationGroup.m

16 lines
259 B
Mathematica
Raw Permalink Normal View History

2010-10-22 01:21:17 +00:00
#import <QuartzCore/CAAnimationGroup.h>
@implementation CAAnimationGroup
- (NSArray *) animations {
return _animations;
2010-10-22 01:21:17 +00:00
}
- (void) setAnimations: (NSArray *) value {
value = [value copy];
[_animations release];
_animations = value;
2010-10-22 01:21:17 +00:00
}
@end