Skip to content

Instantly share code, notes, and snippets.

@ConorBrady
Last active April 25, 2017 16:12
Show Gist options
  • Save ConorBrady/5b24c0b3debd2aab2608a66db355488e to your computer and use it in GitHub Desktop.
Save ConorBrady/5b24c0b3debd2aab2608a66db355488e to your computer and use it in GitHub Desktop.
extension UIButton {
func stylePrimary(fontSize: CGFloat) -> UIButton {
// Apply styles e.g. round corners, border, font etc
setBackgroundImage(.init(with: .orange), for: .normal)
setBackgroundImage(.init(with: .darkOrange), for: .highlighted)
return self
}
}
let button = UIButton().stylePrimary(fontSize: 14)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment