Skip to content

Instantly share code, notes, and snippets.

@wh1pch81n
Last active February 12, 2017 15:31
Show Gist options
  • Save wh1pch81n/f69238308366d42b8113bb5c72f5f499 to your computer and use it in GitHub Desktop.
Save wh1pch81n/f69238308366d42b8113bb5c72f5f499 to your computer and use it in GitHub Desktop.
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