gpt4 book ai didi

ios - UIbutton在点击后改变颜色

转载 作者:行者123 更新时间:2023-12-01 18:18:28 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Change Text or Background of UIButton after a tap

(2 个回答)


8年前关闭。




我有一个 UIButton ,具有预设的文本字体和颜色,我需要在点击点击按钮时立即更改。

我尝试:

- (IBAction)tapAction : (id)sender 
{
// determine button from tag ..
[crtBtn setTitleColor:self.selectedTextColor forState:UIControlStateSelected];
[crtBtn setTitleColor:self.selectedTextColor forState:UIControlStateNormal];
[crtBtn setTitleColor:self.selectedTextColor forState:UIControlStateApplication];
[crtBtn setTitleColor:self.selectedTextColor forState:UIControlStateHighlighted];
[crtBtn setNeedsDisplay];
}

任何想法如何解决这一问题?

最佳答案

试试这个代码:

 - (IBAction)tapAction : (id)sender 
{
[sender setTitleColor:self.selectedTextColor forState:UIControlStateNormal]
}

关于ios - UIbutton在点击后改变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19399440/

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