reachability Questions
5
I am facing weird problem on iPhone 5 with iOS 7, i have tested same code with other devices like iPad1, 2, 3 and iPhone 4, 4s etc. with different iOS combination including iOS 7.
Problem :
When...
Divulgate asked 13/11, 2013 at 9:11
3
Solved
I've implemented AFNetworking without subclassing AFHTTPClient, in part using the following code in my DownloadQueueManager:
-(void)downloadPodcastAt:(NSString *)url toPath:(NSString *)path
{
NSU...
Burchfield asked 23/2, 2013 at 14:33
6
Solved
Downloaded Reachability from Apple, using this method to check for an active connection:
-(BOOL)isReachable{
Reachability *r = [Reachability reachabilityWithHostName:@"http://www.google.com"];
...
Surgical asked 1/7, 2012 at 17:46
3
Solved
I'm currently checking network connection on viewDidLoad using this:
-(BOOL)reachable {
ReachabilityDRC *r = [ReachabilityDRC reachabilityWithHostName:@"google.com"];
NetworkStatus internetStatu...
Byte asked 11/11, 2011 at 19:30
5
I tested different frameworks, e.g.
https://github.com/tonymillion/Reachability
https://github.com/VerticodeLabs/VCLReachability
https://github.com/kstenerud/KSReachability
and I would like to ...
Begot asked 17/6, 2014 at 9:57
4
Solved
My iphone app is pretty simple with one view that handles everything, in viewDidLoad I check to see if we have an internet connection and if we do we load from the web and if not we load from a loc...
Algy asked 21/12, 2010 at 17:2
3
Solved
I was trying to check wether the device is connected via 2G (GPRS, EDGE) or 3G (UMTS, HSDPA).
I only found the Reachability example class from here (Apple Dev Example)
This example only che...
Polygynist asked 14/11, 2011 at 13:18
3
I am trying hard to get the authentic internet connectivity status. I have used Apple's Reachability but it's only giving me the status of wifi connectivity i.e. not covering the case when the devi...
Incursion asked 28/2, 2013 at 22:6
1
Solved
I'm using the Reachability classes for checking when I got an internet connection en when it goes down.
This is my code:
IN VIEW DID LOAD:
internetReachable = [Reachability reachabilityForInte...
Lustre asked 4/1, 2014 at 9:33
1
Solved
I am using AFNetworking 2.0 to monitor Reachability.
In the viewDidLoad of my main VC I have the following:
// Start monitoring the internet connection
[[AFNetworkReachabilityManager sharedManag...
Disquietude asked 19/11, 2013 at 14:20
2
Solved
Is it possible to receive a notification or something inside my app when the internet BECOMES available. I'm aware of reachability and all kinds of stuff. But what i want is to start some pending N...
Municipality asked 1/11, 2013 at 18:58
1
Solved
I have searched but have not found an issue like mine.
I'm sure it's something I have over looked .
I am using tony million's reachability block method.
it is working good when i have internet th...
Lely asked 14/10, 2013 at 19:3
2
Solved
With the release of iOS 6 and iphone 5 I'm trying to figure out how my app can know if the phone is in LTE mode vs GSM mode.
I haven't seen any updates to the Reachability API which can give whet...
Mascia asked 1/10, 2012 at 5:41
2
I'm using Reachability successfully to determine the status of the network, and to be notified of changes (e.g. Reachability Guide for iOS 4).
My question isn't how to get Reachability up and run...
Windsail asked 21/3, 2012 at 18:23
8
Using Apple's Reachability code in iOS5 I get a bunch of compilation errors as shown below. Any ideas on what is happening here? I'm using ARC so I have edited the standard code slightly to remove ...
Tomkins asked 17/10, 2011 at 16:56
2
My Iphone app have 2 mode, online mode, and offline mode. if user is using app in online mode, the request gets submitted to server immediately. if user is using app in offline mode, i will store t...
Underpinning asked 7/8, 2013 at 6:38
5
Solved
I am interested in using the SBUsesNetwork and UIRequiresPersistentWiFi keys in my application; however, I would like to enable them only when using a certain set of view controllers. Is there a wa...
Icecap asked 15/9, 2009 at 22:9
4
i used this code in reachability class that is in ios6
switch (status) {
case kNotReachable:
statusString = [NSString stringWithString: @"Not Reachable"];
break;
case kReachableViaWWAN:...
Bluepencil asked 14/11, 2012 at 6:4
2
Solved
I know the Reachability code will provide if the phone has access to Wifi or 3G network.
However, if the phone has 3G on and Wifi, the Reachability code defaults to saying the phone has Wifi on and...
Gratia asked 26/10, 2012 at 22:9
2
I'm doing a few server calls and getting back some json. The code is pretty simple, it does a call to sign you in, and then does another call to get more info. I keep getting Reachability errors wh...
Chandlery asked 16/2, 2012 at 11:34
7
Currently i am using the class by apple reachability.m/.h and it works, except it notifies me for any change, where as i would like to only notify the user if the network is not reachable. Currentl...
Acetaldehyde asked 23/1, 2011 at 3:41
1
Solved
I see a lot of Reachability examples where people only display a message when reachability status changes.
But recently, I saw in Foursquare app that they display a message every time the user try ...
Acicula asked 19/9, 2012 at 7:54
4
I'm spec-ing an iOS app (which will be built outside of our company) which will upload a user's data entry to a server. If the device is not connected to the Internet, we'd like to save data on the...
Depolarize asked 1/9, 2012 at 2:4
1
Solved
Possible Duplicate:
Iphone detect 3g or wifi
is there a way to get the current network speed or if the device is on EDGE/3G/GPRS?
I can use Reachability to distinguish WiFI from WMAN...
Fotina asked 23/5, 2012 at 11:32
1
Solved
I am having a hard time using Reachability in my code. I would like to keep it very simple by initiating an observer at launch and then just receiving change notifications. In the following code, t...
Fermanagh asked 17/4, 2012 at 1:56
© 2022 - 2024 — McMap. All rights reserved.