Last active
November 2, 2017 09:22
-
-
Save efremidze/e69f36144cad504b02ad132f556dc944 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
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