Skip to content

Instantly share code, notes, and snippets.

@Krishna21Soni13
Created January 3, 2020 10:41
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/15afeaa67a933b740ffc65d4dd8d7367 to your computer and use it in GitHub Desktop.
Save Krishna21Soni13/15afeaa67a933b740ffc65d4dd8d7367 to your computer and use it in GitHub Desktop.
Exit chat room.
@objc func exitButtonCLK() {
guard let name = nickName else {
return
}
SocketHelper.shared.leaveChatRoom(nickname: name) { [weak self] in
guard let self = self else {
return
}
self.navigationController?.popViewController(animated: true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment