Skip to content

Instantly share code, notes, and snippets.

@ebruning
Created July 16, 2013 17:37
Show Gist options
  • Save ebruning/6010862 to your computer and use it in GitHub Desktop.
Save ebruning/6010862 to your computer and use it in GitHub Desktop.
animate buttons
CATransition *animation = [CATransition animation];
animation.type = kCATransitionFade;
animation.duration = 0.4;
[[self.view viewWithTag:Capture].layer addAnimation:animation forKey:nil];
[self.view viewWithTag:Capture].hidden = false;
[[self.view viewWithTag:Submit].layer addAnimation:animation forKey:nil];
[self.view viewWithTag:Submit].hidden = false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment