Created
February 27, 2012 06:10
-
-
Save keefo/98c1664f385dcb7db459 to your computer and use it in GitHub Desktop.
CoreAnimation Group
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CAAnimationGroup *animationGroup = [CAAnimationGroup animation]; | |
[animationGroup setAnimations:[NSArray arrayWithObjects:simpleAnimationOne, simpleAnimationTwo, nil]]; | |
[animationGroup setDuration:1.0f]; | |
[animationGroup setAutoreverses:YES]; | |
[[moveMe layer] addAnimation:animationGroup forKey:@"group action"]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment