Skip to content

Instantly share code, notes, and snippets.

@MathVasc
Created September 7, 2020 17:59
Show Gist options
  • Select an option

  • Save MathVasc/6cfc710e0319df550303dfa83dc219f7 to your computer and use it in GitHub Desktop.

Select an option

Save MathVasc/6cfc710e0319df550303dfa83dc219f7 to your computer and use it in GitHub Desktop.
TestClassFull
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