在这里,我找到了如何使用现已弃用的UIButton
方法为beginAnimations:context:
的标题更改添加动画效果:
UIBUtton title animation for iPhone
如何使用当前的API做同样的事情?
更新
我尝试使用基于块的动画:
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];
颜色变化没有动画。
答案 0 :(得分:48)
使用块:
[UIView transitionWithView:self.flipLabelButton duration:1 options:UIViewAnimationOptionTransitionFlipFromRight animations:^{
[self.flipLabelButton setTitle:newText forState:UIControlStateNormal];
} completion:nil];
答案 1 :(得分:17)
<强>夫特强>
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)
答案 2 :(得分:6)
除了AnimationGroups之外,通常还有两种动画,一种是用于属性动画,另一种是用于动画内容,转换或任何不能使用属性来制作动画的动画。 所以第二个解决方案是您的选择,您可以通过两种方式实现这一目标: 使用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];
另一种方式是使用UIKit块,如@jjv360所说, 但你无法在其中设置颜色动画,因为显然颜色不能翻转。