I know to set the border for a button in the following ways,
button.layer.cornerRadius = 0.0;
button.layer.borderWidth = 2.5;
button.layer.borderColor = [[UIColor darkGrayColor] CGColor];
But do I need to know how to remove or remove the button border?
source
share