socket.IO-objc
socket.IO-objc copied to clipboard
allow multiple parameters
Since JS client allows multiple parameters, perhaps we should allow the same behavior in obj-c?
socket.emit('eventName', 'foo', 'bar', {baz: 'nyan'});
It actually allows it but it was sending all parameters as one object. Here there's a more elegant solution: https://github.com/pkyeck/socket.IO-objc/pull/208