Created
May 12, 2020 21:54
-
-
Save sandeeplearner/1f25aa9ca47b38f3ced2841e73ffd115 to your computer and use it in GitHub Desktop.
sample classes with protocol confirmation
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 CarViewController: UIViewController, ViewControllerProtocol { | |
| var viewModel: CarViewModel! | |
| typealias viewModelType = CarViewModel | |
| } | |
| class PlaneViewController: UIViewController, ViewControllerProtocol { | |
| var viewModel: PlaneViewModel! | |
| typealias viewModelType = PlaneViewModel | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment