Created
July 22, 2017 11:35
-
-
Save tranhieutt/ce14ee75d2f3aad138e9a9f71e2acd05 to your computer and use it in GitHub Desktop.
Swift_override_init_customView
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
required init(coder aDecoder: NSCoder) { | |
super.init(coder: aDecoder)! | |
} | |
override init(frame: CGRect) { | |
super.init(frame: frame) | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment