Created
September 7, 2020 17:59
-
-
Save MathVasc/6cfc710e0319df550303dfa83dc219f7 to your computer and use it in GitHub Desktop.
TestClassFull
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
| public class ClassTest: NSObject { | |
| public override init() { | |
| super.init() | |
| print(" >>>> INIT from \(self)") | |
| } | |
| deinit { | |
| print(" >>>> DEINIT from \(self)") | |
| } | |
| public func method1() { | |
| print(" >>>> METHOD 1 from \(self)") | |
| } | |
| public func method2() { | |
| print(" >>>> METHOD 2 from \(self)") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment