repo.or.cz
/
cocotron.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge pull request #10 from gunyarakun/fix-invalid-return
[cocotron.git]
/
QuartzCore
/
CAAnimationGroup.m
blob
3d7dec3bfe05cf85326e1b485bf0cc5720722478
1
#import <QuartzCore/CAAnimationGroup.h>
2
3
@implementation CAAnimationGroup
4
5
-(NSArray *)animations {
6
return _animations;
7
}
8
9
-(void)setAnimations:(NSArray *)value {
10
value=[value copy];
11
[_animations release];
12
_animations=value;
13
}
14
15
@end