socket.IO-objc icon indicating copy to clipboard operation
socket.IO-objc copied to clipboard

socket.io v0.7.2 — 0.9.x for iOS and OS X

Results 84 socket.IO-objc issues
Sort by recently updated
recently updated
newest added

Hi, If I connect to the socket server via a webpage with JS, everything works as expected. Correct data, handling the whole deal. As soon as I attempt to do...

Need to add "libicucore.dylib" library in Xcode in order to use socket.io.

The problem that I am stuck into is very simple yet complicated for me. I would like to know how can I add a different path of the service that...

Since JS client allows multiple parameters, perhaps we should allow the same behavior in obj-c? ``` JavaScript socket.emit('eventName', 'foo', 'bar', {baz: 'nyan'}); ```

sendEvent assumes the incoming data isn't an NSArray already; this causes it to double-wrap NSArray objects (so instead of [data], you end up with [[data]]. Check if the incoming objet...

If you don't need backward compatibility you should also check out the swift project https://github.com/socketio/socket.io-client-swift

I'm wanting to show a progress bar for data objects that are being sent and received. Is there a way to do this?

I am using socket.IO 0.5.2 and getting some crashes. SIGABRT ABORT at 0x313cfdfc This is stack trace: SRWebSocket.m line 346 -[SRWebSocket setReadyState:] SRWebSocket.m line 539 -[SRWebSocket closeWithCode:reason:] SocketIO.m line 631...

Hi, I found an issue when you send custom handshakes which contain special characters like the `+` (like dates with the GMT indicator). So here a patch to URL encode...