Last active
April 25, 2017 16:12
-
-
Save ConorBrady/5b24c0b3debd2aab2608a66db355488e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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