We are working on conference related application, Is it possible to send and receive packets through socket, after the application entered background? I have googled and found some way like below....
eg:
UIApplication *uiApplication = [UIApplication sharedApplication];
backGroundTask = [uiApplication beginBackgroundTaskWithExpirationHandler:^{
CFRunLoopRun();
}];
What CFRunLoopRun is doing here. If it will work.. How? I am not clear. Help me where to go from here...
thanx.