如何将 tintColor 保留在 UIButton 中然后单击它?

Posted

技术标签:

【中文标题】如何将 tintColor 保留在 UIButton 中然后单击它?【英文标题】:How to keep tintColor in a UIButton then click on this? 【发布时间】:2017-12-24 11:44:01 【问题描述】:

我正在将 tintColor 设置为 UIButton 的 UIImageView,如下所示:

UIImage* img = [UIImage imageNamed:imageName];
icon.image = [img imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
icon.tintColor = [UIColor greenColor]; 

这段代码是有效的,但是然后点击UIButton,颜色恢复到UIImage的初始颜色。

我怎样才能保持添加的绿色?

谢谢!

【问题讨论】:

Why is my UIButton.tintColor not working?的可能重复 【参考方案1】:

如果有帮助,试试这个。

UIImage *image = [[UIImage imageNamed:@“imageName.png”] imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
        [_yourBtn setImage:image forState:UIControlStateNormal];
        [_yourBtn setTintColor:[UIColor greenColor]];

【讨论】:

以上是关于如何将 tintColor 保留在 UIButton 中然后单击它?的主要内容,如果未能解决你的问题,请参考以下文章

如何在UIButton中保持tintColor然后点击这个?

如何颜色选择 UIBarButtonItem tintColor

如何更改图像 tintColor

如何将 tabBarOption 添加到下面的代码中?这样我就可以使用 tintColor

如何使 UITabBarItem 忽略 tintColor

如何调整 UINavigationBar tintColor 以补偿 iOS6 中的新渐变效果?