I am using a socket.io like service to implement real time messaging on iOS. I wrap the service using UIWebview, which is retained in a singleton NSObject (Not attached to any UIView).
I can successfully establish connection to the server, and get message from it using longpolling in Javascript. However, my problem is that the connection will fail after some time of idling. It is hard to debug why this happens.
So I suspect if iOS system will kill this sort of connection when UIWebview is not added to any view or being inactive.
Anyone knows the working mechanism of UIWebview's threads and connections?
Thanks! Bob