Skip to content

Instantly share code, notes, and snippets.

@Krishna21Soni13
Created January 3, 2020 10:59
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/1d1ce21fbbf669540ff95cd8363dc241 to your computer and use it in GitHub Desktop.
Save Krishna21Soni13/1d1ce21fbbf669540ff95cd8363dc241 to your computer and use it in GitHub Desktop.
Configure chat view model.
private func configureViewModel() {
guard let name = nickName else {
return
}
chatViewModel.arrUsers.subscribe {[weak self] (result: [User]) in
guard let self = self else {
return
}
self.reloadData()
}
chatViewModel.fetchParticipantList(name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment