0

i want to check for internet availability in whenever my application make call to webservice during my application was minimized. I had done some google work and found this :- How to check for an active Internet connection on iOS or OSX? http://forums.macrumors.com/showthread.php?t=635200

But this doesnt not gives me how do i check when application is minimized i.e paused!! please help me

Community
  • 1
  • 1
ios developer
  • 3,057
  • 2
  • 43
  • 93

1 Answers1

1

When your application is running in background mode you cannot check for internet connectivity. You can run audio, VOIP or location services in background mode. Any open or listening sockets will be closed when the application enters background mode.

werner
  • 859
  • 4
  • 8
  • @ werner.Thanks for the reply .I had achieved this by writing method in delegate class.But it was For ios4 and for further version – ios developer Jun 29 '11 at 11:16