gpt4 book ai didi

iphone - 无法更改选定状态的自定义 uiButton 的背景图像

转载 作者:行者123 更新时间:2023-12-03 19:12:04 25 4
gpt4 key购买 nike

通过下面的代码,即使我点击按钮,按钮似乎始终处于正常状态(始终绿色)。

UIButton *gumb = [UIButton buttonWithType:UIButtonTypeCustom];
gumb.frame = CGRectMake(4, 40, 104, 37);
gumb.tag=0;
[gumb setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[gumb setTitleColor:[UIColor blackColor] forState:UIControlStateSelected];
[gumb setBackgroundImage:[UIImage imageNamed:@"greenButton.png"] forState:UIControlStateNormal];
[gumb setBackgroundImage:[UIImage imageNamed:@"whiteButton.png"] forState: UIControlStateSelected];

如果我将正常状态的图像设置为白色按钮并将选择的图像设置为绿色按钮,则按钮始终为白色,从不为绿色。

最佳答案

[gumb setBackgroundImage:[UIImage imageNamed:@"whiteButton.png"] forState: UIControlStateHighlighted] 

使用此图像代替所选图像

关于iphone - 无法更改选定状态的自定义 uiButton 的背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5801643/

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