Skip to content

Instantly share code, notes, and snippets.

@Krishna21Soni13
Created January 3, 2020 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Krishna21Soni13/690de3b0897a6774550424e3a37c2da1 to your computer and use it in GitHub Desktop.
Save Krishna21Soni13/690de3b0897a6774550424e3a37c2da1 to your computer and use it in GitHub Desktop.
Configure the MessageViewModel
private func configureViewModel() {
messageViewModel.arrMessage.subscribe { [weak self] (result: [Message]) in
guard let self = self else {
return
}
self.reloadData()
self.scrollToBottom(animated: false)
}
messageViewModel.getMessagesFromServer()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment