mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 04:00:00 +00:00
16 lines
259 B
Objective-C
16 lines
259 B
Objective-C
#import <QuartzCore/CAAnimationGroup.h>
|
|
|
|
@implementation CAAnimationGroup
|
|
|
|
- (NSArray *) animations {
|
|
return _animations;
|
|
}
|
|
|
|
- (void) setAnimations: (NSArray *) value {
|
|
value = [value copy];
|
|
[_animations release];
|
|
_animations = value;
|
|
}
|
|
|
|
@end
|