How can I set a custom background color of a button?
Interface Builder doesn\'t seem to have an interface to do this.
Is it only available programmatically
To keep the button rounded, what about using
view.layer.cornerRadius = 8;
described here
How do I create a round cornered UILabel on the iPhone?