Swift – Objective-C load class method?

Prior to Swift 1.2:

override class func load() {
   NSLog("load");
}

EDIT:

As of Swift 1.2 you can no longer override the load method. Look into the method initialize instead, it behaves different than load though, it get’s called the first time the class is being referenced somewhere rather than on application initial load

Leave a Comment