Last active
August 28, 2017 15:17
-
-
Save faganello60/4cf60992353ff4b566a686e3aff13d2d to your computer and use it in GitHub Desktop.
Tutorial Base ViewController
This file contains 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 BaseViewController: UIViewController { | |
override func viewDidLoad() { | |
if let controller = self as? UIController { | |
self.title = controller.navigationTitle | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment