You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 14, 2024. It is now read-only.
Hello everyone, I am using socket.IO-objc in my project using XCode9.0. I am trying to paring or connect with hardware device with using particular IP Address and Port which connect successfully.
I am using below code. // create socket.io client instance socketIO = [[SocketIO alloc] initWithDelegate:self]; [socketIO connectToHost:@"myHost" onPort:port];
and then I am getting response from
(void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data in SocketIO.m class. Now data coming in every seconds. It is working well. But when I lock my iPhone then connection getting break. This is the main issue. So how I can use socket connection in background. Please guide me I stuck from last many days.