I use AFNetworking in my app for every request (like login, get data from url, etc).

Take this for example: an user click on the login button and there's no connection, how to instantly display a UIAlertView that says the error? The only way is to wait the request timeout and execute the failure block? Isn't there a way that instantly check if there's connection or not?

Thanks!

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

As of 0.9, AFHTTPClient actually has network reachability built-in (a simpler interface to Apple's aforementioned Reachability code). Just include the SystemConfiguration framework and use -setReachabilityStatusChangeBlock: to specify a response when the reachability state changes.

link|improve this answer
Hi mattt and thanks for you reply. But your suggestion is to check for current status of internet connection before every method that uses internet and if there's no connection displays an alert? – Fred Collins Feb 13 at 5:22
No, not at all. AFHTTPClient monitors for reachability changes and executes the specified block when that happens. The block has a single argument, which is a boolean for whether or not the baseURL is reachable. – mattt Feb 13 at 5:33
I've subclassed AFHTTPClient and I've overridden -setReachabilityStatusChangeBlock: with an NSLog(@"test") inside but the statement is never executed. Why? – Fred Collins Feb 15 at 5:01
@FredCollins Check that you've included the SystemConfiguration framework. If that's not linked to the project, that code won't run. – mattt Feb 16 at 21:41
@mattt could you add some sample code so I could see what should I do. Thanks – Simon Apr 24 at 23:17
show 1 more comment
feedback

Maybe you could use "Reachability" to determine if the device is connected to the network. Here is the link to the Apple Doc. : Reachability

For example :

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNetworkChange:) name:kReachabilityChangedNotification object:nil];
reachability = [Reachability reachabilityForInternetConnection];
[reachability startNotifier];
NetworkStatus remoteHostStatus = [reachability currentReachabilityStatus];
if(remoteHostStatus == NotReachable) {
  //Your UIAlertView
}
link|improve this answer
Hi, thanks for you reply. Please check my comment in the other answer. – Fred Collins Feb 12 at 23:23
feedback

How about using Reachability?

You can check whether you have a plausible reason for trying a connection before you do it.

Looks like the Apple Sample Project for Reachability shows how to get an initial status.

link|improve this answer
For any case where reachability returns no, won't any socket i/o fail immediately, too? – smparkes Feb 12 at 23:04
Yes, that's how Reachability works but it gives you extras like the ability to receive notifications when reachability changes - interrupts, not polling. – Adam Eberbach Feb 12 at 23:18
Excuse me Adam, but if the network is not used but the device is connected and I check for network status, Reachability tell me I've no connection. This answer explain what I would say in a better way: stackoverflow.com/a/9186073/719127 – Fred Collins Feb 12 at 23:22
Right. I guess my point was for the question at hand, using reachability isn't any better than just trying to make the connection. – smparkes Feb 12 at 23:27
Updated with a link to the code sample - checking reachability before making your actual request can be done. – Adam Eberbach Feb 12 at 23:40
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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