I am trying to determine if the user is connected to the internet by using AFNetworking 2.0 and the \"AFNetworkReachabilityManager\", but it doesen\'t seem to work. It\'s al
That's because that block is only executed when reachability changes.
To get the current status, you can do this:
- (BOOL)connected { return [AFNetworkReachabilityManager sharedManager].reachable; }