gpt4 book ai didi

ios - UIButton 按下时不会更改文本颜色

转载 作者:搜寻专家 更新时间:2023-11-01 06:17:56 25 4
gpt4 key购买 nike

以编程方式创建的 UIButton 在按下时不会改变颜色,就像使用 Interface Builder 创建的所有其他按钮一样。

我的按钮创建如下:

        let cableDetailsButton = UIButton(type: UIButtonType.System)
cableDetailsButton.frame = CGRectMake(8, 8, 42, 21)
cableDetailsButton.setTitle("Title", forState: UIControlState.Normal)
cableDetailsButton.setTitleColor(self.view.tintColor, forState: .Normal)
cableDetailsButton.setTitleColor(UIColor.blackColor(), forState: UIControlState.Highlighted)
cableDetailsButton.addTarget(self, action: #selector(FuseDetailsViewController.cableButtonPressed), forControlEvents: .TouchUpInside)

我想补充一点,tintColor 是默认的 iOS 颜色(蓝色)

我的目标是以编程方式创建与从 Interaface Builder 列表中拖放的按钮相同(默认!)的按钮。我希望我的按钮在按下时改变颜色/alpha。

我正在使用 Swift 2.3

不幸的是,如此简单的任务让我不知所措,以至于我不得不寻求帮助。预先感谢您的帮助。

更新:按钮是 UISCrollView 的一部分

最佳答案

代替

let cableDetailsButton = UIButton(type: UIButtonType.system)

您需要将 UIButtonType 更改为 .custom

let cableDetailsButton = UIButton(type: UIButtonType.custom)

如果您使用的是 Swift3,语法也不正确。在下面找到更正的语法

let cableDetailsButton = UIButton(type: UIButtonType.custom)
cableDetailsButton.frame = CGRect(x: 8, y: 8, width: 42, height: 21)
cableDetailsButton.setTitle("Dane o przewodach", for: UIControlState.normal)
cableDetailsButton.setTitleColor(self.view.tintColor, for: .normal)
cableDetailsButton.setTitleColor(UIColor.black, for: UIControlState.highlighted)
cableDetailsButton.addTarget(self, action: #selector(self.cableButtonPressed), for: .touchUpInside)

关于ios - UIButton 按下时不会更改文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40207301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com