Created
January 4, 2012 23:38
-
-
Save kyleturner/1562865 to your computer and use it in GitHub Desktop.
Animation to fade in table cell images
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
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