UIButton 中的标题标签文本颜色无法正确设置动画
Posted
技术标签:
【中文标题】UIButton 中的标题标签文本颜色无法正确设置动画【英文标题】:Title label text color will not animate correctly in UIButton 【发布时间】:2017-04-11 10:45:23 【问题描述】:我正在尝试创建一个按钮,在突出显示时将其背景颜色更改为标题标签的背景颜色,并且标题标签将其颜色更改为白色。我的代码是这样的:
import UIKit
class AlertStyleButton: UIButton
var buttonColor: UIColor?
override init(frame: CGRect)
super.init(frame: frame)
setup()
required init?(coder aDecoder: NSCoder)
super.init(coder: aDecoder)
setup()
func setup()
buttonColor = titleColor(for: .normal)
override var isHighlighted: Bool
didSet
guard let buttonColor = buttonColor else
return
if isHighlighted
UIView.animate(withDuration: 0.1, animations:
self.setTitleColor(UIColor.white, for: UIControlState())
self.backgroundColor = buttonColor
)
else
UIView.animate(withDuration: 0.1, animations:
self.setTitleColor(buttonColor, for: UIControlState())
self.backgroundColor = UIColor.white
)
当按钮被按下和按下时,按钮颜色似乎可以正确动画。但是,文本不会动画为白色。我在这里做错了什么?
【问题讨论】:
改成self.setTitleColor(buttonColor, for: .normal) ***.com/questions/27577443/… @karthikeyan 没有任何区别 @srinivasn 我应该如何在transitionWithView
中设置标题标签颜色?我尝试将self.setTitleColor(UIColor.white, for: .normal)
放在动画块中,效果没有改变,仍然没有动画成白色。
UIView.transition(with: someview, duration:0.6, options:UIViewAnimationOptions.transitionFlipFromLeft, animations: // do something , completion: finished in // do something )
【参考方案1】:
要设置UIButton
的标题颜色,您需要显式使用setTitleColor: forState:
方法。比如这样:
var buttonTextColor: UIColor!
var buttonBgColor: UIColor!
override init(frame: CGRect)
super.init(frame: frame)
setup()
required init?(coder aDecoder: NSCoder)
super.init(coder: aDecoder)
setup()
func setup()
buttonBgColor = UIColor.white // set whatever color you like
buttonTextColor = UIColor.black // set whatever color you like
backgroundColor = buttonBgColor
setTitleColor(buttonTextColor, for: .normal)
setTitleColor(buttonBgColor, for: .highlighted)
override var isHighlighted: Bool
didSet
if isHighlighted
UIView.animate(withDuration: 0.1, animations:
self.backgroundColor = self.buttonTextColor
)
else
UIView.animate(withDuration: 0.1, animations:
self.backgroundColor = self.buttonBgColor
)
【讨论】:
在上面试过你的代码^它显示黑色背景动画很好,但文本不会动画成白色。以上是关于UIButton 中的标题标签文本颜色无法正确设置动画的主要内容,如果未能解决你的问题,请参考以下文章
受 UIButton 外观设置影响的 UIMenuController 中的文本颜色
如何为状态 UIControlStateHighlighted 设置按钮标签文本颜色