Skip to content

v5.3.0

Compare
Choose a tag to compare
@nuclearace nuclearace released this 27 Jan 21:08
· 790 commits to master since this release
  • Move to a NSURL based way of creating clients.
let socket = SocketIOClient(socketURL: "localhost:8080")

becomes

let socket = SocketIOClient(socketURLString: "http://localhost:8080")

But instead of using a string based init, instead use the NSURL based ones

let socket = SocketIOClient(socketURL: NSURL(string: "http://localhost:8080/")!)
  • Move connectParams to the engine