Skip to content

Instantly share code, notes, and snippets.

@pogramos
Last active October 19, 2020 13:28
Show Gist options
  • Select an option

  • Save pogramos/f5622c47311ea7aaadfd8eff05419051 to your computer and use it in GitHub Desktop.

Select an option

Save pogramos/f5622c47311ea7aaadfd8eff05419051 to your computer and use it in GitHub Desktop.
CustomButton - Variables
override var isEnabled: Bool {
didSet {
updateBackground()
}
}
var style: ButtonStyle {
didSet {
apply(style: style)
}
}
init(style: ButtonStyle = .primary) {
self.style = style
super.init(frame: .zero)
apply(style: style)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment