Created
May 4, 2017 10:03
-
-
Save edwardean/7304f5393e19b1deda674d40d4dc89ce to your computer and use it in GitHub Desktop.
UINavigationBar title切换动画:
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 *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