Skip to content

Instantly share code, notes, and snippets.

@asilturk
Created December 4, 2018 17:06
Show Gist options
  • Save asilturk/eca7ef586dc82bd70bbdbbbaedce090f to your computer and use it in GitHub Desktop.
Save asilturk/eca7ef586dc82bd70bbdbbbaedce090f to your computer and use it in GitHub Desktop.
MVVM demo - ViewController
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