Skip to content

Instantly share code, notes, and snippets.

@OhhhThatVarun
Created March 16, 2021 11:18
Show Gist options
  • Save OhhhThatVarun/41a2df1bf369b38396ea2c724ffd7b20 to your computer and use it in GitHub Desktop.
Save OhhhThatVarun/41a2df1bf369b38396ea2c724ffd7b20 to your computer and use it in GitHub Desktop.
SwDin: ViewModel Injection example.
import UIKit
import SwDin
class HomeViewController: UIViewController {
@InjectViewModel
private var viewModel: HomeViewModel
override func viewDidLoad() {
super.viewDidLoad()
let data = viewModel.requestData()
// Do something with data
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment