Skip to content

Instantly share code, notes, and snippets.

@edwardean
Created December 17, 2015 08:51
Show Gist options
  • Save edwardean/25370d84b9c0ddd84e60 to your computer and use it in GitHub Desktop.
Save edwardean/25370d84b9c0ddd84e60 to your computer and use it in GitHub Desktop.
CATransition *animation = [CATransitionanimation];
animation.duration = 0.5;
animation.type = kCATransitionFade;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
[self.navigationController.navigationBar.layer addAnimation: animation forKey: @"changeTextTransition"];
self.title = title;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment