Skip to content

Instantly share code, notes, and snippets.

@sbrocket
Created May 13, 2011 21:43
Show Gist options
  • Select an option

  • Save sbrocket/971366 to your computer and use it in GitHub Desktop.

Select an option

Save sbrocket/971366 to your computer and use it in GitHub Desktop.
CATransition *transition = [CATransition animation];
transition.duration = 0.25f;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionFade;
[button.layer addAnimation:transition forKey:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment