Skip to content

Instantly share code, notes, and snippets.

@fassko
Created July 30, 2019 06:09
Show Gist options
  • Save fassko/975caa71b6ff807cb141395ad88fab46 to your computer and use it in GitHub Desktop.
Save fassko/975caa71b6ff807cb141395ad88fab46 to your computer and use it in GitHub Desktop.
Sending messages with Websocket iOS 13
let message = URLSessionWebSocketTask.Message.string("Hello World”)
webSocketTask.send(message) { error in
if let error = error {
print("WebSocket couldn’t send message because: \(error)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment