Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save pogramos/796141f84712096d5775ae2af867c83b to your computer and use it in GitHub Desktop.
CustomButton - Initial
enum ButtonStyle {
case primary
case secondary
}
class CustomButton: UIButton {
var style: ButtonStyle = .primary
init(style: ButtonStyle) {
self.style = style
super.init(frame: .zero)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment