如何在UIButton中保持tintColor然后点击这个?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在UIButton中保持tintColor然后点击这个?相关的知识,希望对你有一定的参考价值。
我是,将tintColor设置为UIButton的UIImageView,如下所示:
UIImage* img = [UIImage imageNamed:imageName];
icon.image = [img imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
icon.tintColor = [UIColor greenColor];
此代码正常工作,但随后单击UIButton,颜色返回到UIImage的初始颜色。
我怎么能保持绿色?
谢谢!
答案
如果有帮助,试试这样。
UIImage *image = [[UIImage imageNamed:@“imageName.png”] imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
[_yourBtn setImage:image forState:UIControlStateNormal];
[_yourBtn setTintColor:[UIColor greenColor]];
以上是关于如何在UIButton中保持tintColor然后点击这个?的主要内容,如果未能解决你的问题,请参考以下文章
绘制 UIButton/UIBarButtonItem 以使用父栏的 tintColor?
UIImageView的tintColor不适用于storyboard,但可以使用代码