Skip to content

Instantly share code, notes, and snippets.

@keefo
Created February 27, 2012 06:10
Show Gist options
  • Save keefo/98c1664f385dcb7db459 to your computer and use it in GitHub Desktop.
Save keefo/98c1664f385dcb7db459 to your computer and use it in GitHub Desktop.
CoreAnimation Group
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