Reputation: 1355
I am trying to remove the pink color of this button, but it seems that I can't. I have looked inside my code and I couldn't find a line where I set it to be pink. Any ideas how to remove it, it should be transparent.
Upvotes: 1
Views: 163
Reputation: 20804
Check this
check button.backgroundColor = UIColor.clear
You can also check this in the interface builder
I hope this helps you
Upvotes: 2
Reputation: 3599
Setting the background color to clear will make the button transparent.
btSeeWhatsThere.backgroundColor = UIColor.clear()
Upvotes: 4