Skip to content

Instantly share code, notes, and snippets.

@efremidze
Last active November 2, 2017 09:22
Show Gist options
  • Save efremidze/e69f36144cad504b02ad132f556dc944 to your computer and use it in GitHub Desktop.
Save efremidze/e69f36144cad504b02ad132f556dc944 to your computer and use it in GitHub Desktop.
class ButtonSubclass: UIButton {
convenience init(title: String) {
self.init()
self.init(type: .system)
self.setTitle(title, for: .normal)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment