gpt4 book ai didi

ios - UIButton 选定的图像不起作用

转载 作者:行者123 更新时间:2023-11-30 13:09:24 28 4
gpt4 key购买 nike

当选择 UIButton 时,我遇到了问题。代码位于 Swift 3 中:

let radioButton = UIButton(type: .system)
radioButton.frame = CGRect(x: 0, y: 0, width: 40, height: 40)
radioButton.setImage(UIImage(named: "buttonUnchecked"), for: .normal)
radioButton.setImage(UIImage(named: "buttonChecked"), for: .selected)
radioButton.setTitle("This is some text.", for: .normal)
radioButton.sizeToFit()

当通过radioButton.isSelected = true选择它时,不显示图像。

最佳答案

您可以尝试添加这样的目标

radioButton.addTarget(self, action: "addMethodName", forControlEvents: UIControlEvents.TouchUpInside)

并在方法中更改图像,如下所示:

radioButton.setImage(UIImage(named: "buttonUnchecked"), for: .normal)

关于ios - UIButton 选定的图像不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38902347/

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