MegaBits / SIOSocket

Realtime iOS application framework (client) http://socket.io
MIT License
494 stars 80 forks source link

Get Connected Socket ID #68

Open MukeshMuteja786 opened 7 years ago

MukeshMuteja786 commented 7 years ago

My Socket is connected to server but i need Socket id too, Can anyone Please help me

[SIOSocket socketWithHost: @"http://192.168.1.240:9030" response: ^(SIOSocket *socket1) {

    NSLog(@"%@",socket1);
    socket = socket1;

    socket.onConnect =^()
    {

        NSLog(@"Socket Connected");
      //How to get Socket id Here    

    };

Server is sending details when Socket is connected

Thanks in advance.