-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EXC_BREAKPOINT #20
Comments
@shuoli84 I realise now that this is probably 2 separate issues. Unless it's something obvious I am doing wrong, I can move the second one into new issue. |
from the code: var client = SocketIOClient(uri: "http://localhost:3000/socket.io/", reconnect: true, timeout: 30, transports: ["websocket"])
client.open()
var socket = client.socket("/brand/root")
socket.delegate = self Seems you not retain any reference on client. Anyway, the lib should not crash. I'll fix it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am getting an
EXC_BREAKPOINT
on this lineI am using socket.io
v1.3.4
, and engine.iov1.5.1
, and SocketIOCocoa from master. On the server my code looks like this:And on the client:
The text was updated successfully, but these errors were encountered: