Skip to content

Instantly share code, notes, and snippets.

@yannxou
Last active August 29, 2015 14:10
Show Gist options
  • Save yannxou/dbc0c4223a6b11c2ac6c to your computer and use it in GitHub Desktop.
Save yannxou/dbc0c4223a6b11c2ac6c to your computer and use it in GitHub Desktop.
Swift: Class method that gets called when the class is loaded for the first time
class Test: NSObject { // class must extend NSObject
override class func load() {
println("class loaded!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment