Last active
October 19, 2020 13:30
-
-
Save pogramos/796141f84712096d5775ae2af867c83b to your computer and use it in GitHub Desktop.
CustomButton - Initial
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
| 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