Skip to content

Instantly share code, notes, and snippets.

@kyleturner
Created January 4, 2012 23:38
Show Gist options
  • Save kyleturner/1562865 to your computer and use it in GitHub Desktop.
Save kyleturner/1562865 to your computer and use it in GitHub Desktop.
Animation to fade in table cell images
CATransition *transition = [CATransition animation];
transition.duration = 0.35f;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionFade;
[logoView.layer addAnimation:transition forKey:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment