Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save edwardean/7304f5393e19b1deda674d40d4dc89ce to your computer and use it in GitHub Desktop.
Save edwardean/7304f5393e19b1deda674d40d4dc89ce to your computer and use it in GitHub Desktop.
UINavigationBar title切换动画:
CATransition *animation = [CATransition animation];
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