How can I set the background color of a UIButton
in Xcode?
I see the property Background and Image in the layout property but i can't set anything in this two. (I can set only image in both not colors)
Just scroll a little bit in Attribute Inspector , you can find Background property in view section that will allow you set the backgroundColor for the UIButton . If you want to set backgroundColor of button programatically.
Add a button on your storyboard, select it Go to it's attribute inspector and select 'Background' property to choose the color.
At the top select the attributes inspector. Under the section "View" there should be a spot that says "Background". click that and choose your colour.
Just scroll a little bit in Attribute Inspector
, you can find Background
property in view
section that will allow you set the backgroundColor
for the UIButton
.
If you want to set backgroundColor
of button programatically.
Objective C :
self.yourButton.backgroundColor = [UIColor redColor];
Swift 3 and Swift 4
self.yourButton.backgroundColor = UIColor.red
Swift 2.3 or lower
self.yourButton.backgroundColor = UIColor.redColor()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With