Skip to content

Instantly share code, notes, and snippets.

@asilturk
Last active December 4, 2018 17:52
Show Gist options
  • Save asilturk/61fe842932b2c63ca8f6ff763206066f to your computer and use it in GitHub Desktop.
Save asilturk/61fe842932b2c63ca8f6ff763206066f to your computer and use it in GitHub Desktop.
MVVM demo - Model Delegate
// MARK: - MainViewModelDelegate
extension MainViewController: MainViewModelDelegate {
func requestCompleted() {
DispatchQueue.main.async {
self.tblView.reloadData()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment