简体   繁体   中英

How to set the Button Image tint color?

Button image icon tint color changing on click in iOS.
Here is the image of what is happening.

在此处输入图片说明

Problem: the color is the default one, not the custom color I have set.
Question: how to set a custom tint color for that button?

Try this one :

if let btnImg = yourBtnOutlet.imageView?.image {
       yourBtnOutlet.setImage(btnImg.withRenderingMode(.alwaysTemplate), for: .normal)
       yourBtnOutlet.tintColor = UIColor.red
 }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM