vote up 15 vote down star
17

I'm working on an iPhone app that makes a few calls to web services. I posted this app on the Apple store but it got rejected (and rightly so) since there was no error message displayed to the user if no internet connection is available. Since obviously the app would not work without it.

So I just wanted to know how to best achieve this? I'm guessing something needs to go in the viewDidLoad method that will throw an alert box saying something like "You need an internet connection to use this application".

Any ideas would be appreciated.

flag

2 Answers

vote up 21 vote down check

If your application must have network access the easiest way is to add the following settings to your info.plist as boolean values.

  • SBUsesNetwork - Ensure the device has an active connection
  • UIRequiresPersistentWiFi - Ensures the device is connected via WiFi

If your choice is not true then the user will be presented with an appropriate message when starting your application. Best of all this message is from the OS and thus is localized.

If your application cannot download data from a website while running (loss of signal, site down) you should still warn the user though and not just spin indefinitely.

link|flag
Great tip, thanks! – unforgiven3 Feb 27 at 21:36
excellent. Thanks. – givp Feb 27 at 21:38
1  
Do you have to assign a value to "SBUsesNetwork" or just add it as a key? I can't find any documentation on it in the iPhone SDK or the Apple Developer Support site :-( – Teflon Ted Mar 26 at 0:30
They're both boolean's so should be set to true – Andrew Grant Mar 30 at 21:44
2  
Correct me if I'm wrong, but these settings seem to have limitations. SBUsesNetwork only causes an alert if the phone is in airplane mode. UIRequiresPersistentWiFi only causes an alert if WiFi is enabled but not connected. Neither setting seems to cause an alert if user has disabled WiFi. – Clint Harris Apr 6 at 15:12
show 4 more comments
vote up 10 vote down

Apple Developer Connection has a sample application (Reachability) that uses the System Configuration framework to determine network status. It will tell you whether you have a WiFi, EDGE/3G or no Internet connection.

You would use portions of this code in your application to determine network state, and then provide interface cues if no connection is available, such as a UIAlertView.

link|flag
Great. Will try that. Thanks – givp Feb 27 at 21:40
1  
I made a note about Reachability here: stackoverflow.com/questions/181485/… – Chris Lundie Feb 27 at 21:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.