mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-27 14:00:22 +00:00
16 lines
245 B
Objective-C
16 lines
245 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
|