Last active
February 12, 2017 15:31
-
-
Save wh1pch81n/f69238308366d42b8113bb5c72f5f499 to your computer and use it in GitHub Desktop.
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
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
specialMethod() | |
} | |
func specialMethod() { | |
// overridable method | |
} | |
} | |
class ViewControllerSpecial: ViewController { | |
override func specialMethod() { | |
// Special override | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment