Last active
December 4, 2018 17:52
-
-
Save asilturk/61fe842932b2c63ca8f6ff763206066f to your computer and use it in GitHub Desktop.
MVVM demo - Model Delegate
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
// 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