Created
December 4, 2018 17:06
-
-
Save asilturk/eca7ef586dc82bd70bbdbbbaedce090f to your computer and use it in GitHub Desktop.
MVVM demo - 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 MainViewController: UIViewController { | |
// ... | |
private lazy var viewModel: MainViewModel = { | |
let vm = MainViewModel() | |
vm.delegate = self | |
return vm | |
}() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment