Skip to content

Instantly share code, notes, and snippets.

@fabiogiolito
Last active December 5, 2018 13:49
Show Gist options
  • Save fabiogiolito/57ece5c6ba27da6e979bb804bc7dd3b9 to your computer and use it in GitHub Desktop.
Save fabiogiolito/57ece5c6ba27da6e979bb804bc7dd3b9 to your computer and use it in GitHub Desktop.
class StyledButton: UIButton {
enum ButtonStyle {
case large, wide, tag
case primary, secondary
case tintPrimary, tintSecondary
case …
}
var styles = [ButtonStyle]() {
didSet {
applyStyles()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment