Skip to content

Instantly share code, notes, and snippets.

@kevinbluer
Created September 7, 2014 14:41
Show Gist options
  • Save kevinbluer/c1151dc76fb40050a10f to your computer and use it in GitHub Desktop.
Save kevinbluer/c1151dc76fb40050a10f to your computer and use it in GitHub Desktop.
Styling a button
// some styling on the "sports" button
buttonSports.backgroundColor = UIColor(red: 0.5, green: 0.5, blue: 0.5, alpha: 0.5)
buttonSports.layer.cornerRadius = 10
buttonSports.layer.borderWidth = 2
buttonSports.layer.borderColor = UIColor( red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0 ).CGColor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment