Here I found how to animate UIButton
's title change using now-deprecated beginAnimations:context:
method:
UIBUtton title animation for iPhone
How to do the same thing using current APIs?
Update:
I've tried to use block-based animations:
NSTimeInterval animationDuration = animated ? 1.f : 0.f;
[UIView animateWithDuration:animationDuration delay:0.f options:UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationOptionAllowUserInteraction animations:^{
[button setTitle:newTitle forState:UIControlStateNormal];
[button setTitleColor:newTitleColor forState:UIControlStateNormal];
} completion:nil];
The color change is not animated.
Use blocks:
[UIView transitionWithView:self.flipLabelButton duration:1 options:UIViewAnimationOptionTransitionFlipFromRight animations:^{ [self.flipLabelButton setTitle:newText forState:UIControlStateNormal]; } completion:nil];
Swift
UIView.transition(with: button, duration: 0.5, options: .transitionCrossDissolve, animations: { self.button.setTitle("WOW, new title", for: .normal) self.button.setTitleColor(UIColor.red, for: .normal) }, completion: nil)
In addition to AnimationGroups, there are generally two kinds of animations, one is for property animation, the other is for animating something like your content,transition or anything that cannot use property to do animation. So the second solution is your choice,and you can achieve this by two ways: use CATransition:
CATransition *transition = [CATransition animation];
transition.type = kCATransitionFade;
transition.duration = 1;
[button.layer addAnimation:transition forKey:kCATransition];
[button setTitle:newTitle forState:UIControlStateNormal];
[button setTitleColor:newColor forState:UIControlStateNormal];
the other way is using a UIKit block as @jjv360 said, but you can't animate color inside it because obviously color can't be flipped.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With