Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a toggle in my app that's "download on WiFi only". However, that toggle is useless for iPod touch or WiFi-iPads.

Is there a way to know if the device has cellular data capabilities in code? Something that would work in the future would be great too (like if an iPod touch 5th gen with 3G comes out).

share|improve this question
I filed a bug for this : openradar.appspot.com/9974175. – gcamp Aug 18 '11 at 2:22
Why not edit your info.plist and add 3g in UIRequiredDeviceCapabilities? – Zhao Xiang Aug 26 '11 at 15:49
1  
@Zhao It's not a requirement, it's just that want to hide a toggle for WiFi-only user. – gcamp Aug 26 '11 at 15:51
Sorry for didn't really understand your question. And I checked Apple's doc, there's no key 3g nor cellular radio for UIRequiredDeviceCapabilities – Zhao Xiang Aug 26 '11 at 15:59

5 Answers

3G by itself seems tough to find. You can find out whether a device can make calls using [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tel://"]]. You can check whether a device can get to the internet, period (and by which method that can currently happen) using Reachability code:

NetworkStatus currentStatus = [[Reachability reachabilityForInternetConnection] 
                               currentReachabilityStatus];

if(currentStatus == kReachableViaWWAN) // 3G

else if(currentStatus == kReachableViaWifi) // ...wifi

else if(currentStatus == kNotReachable) // no connection currently possible

..but aside from that, I don't think you can check for the existence of a 3G modem in the device. If it can't make a call, and doesn't currently have cell data turned on and wifi turned off, you won't be able to find out if it's 3G-capable.

An alternative way (not forward-compatible though, so you probably don't want to do this) is to compare the device's model with an exhaustive list, knowing which ones have 3G modems in them, as shown here. For your example, Apple may release an iPod5,1 device that supports 3G, so you'd have to add it to this list. The current list of platforms which support 2G/3G based on the return values of THAT class are:

iPhone 1G
iPhone 3G
iPhone 3GS
iPhone 4
Verizon iPhone 4
iPhone 4S
iPad
iPad 2 (GSM)
iPad 2 (CDMA)
iPad-3G (4G)
share|improve this answer
I know everything you listed… The first two are just not acceptable : it's not because you can't phone or that you are currently on WiFi that you can't have cellular data. The third is not future proof... – gcamp Aug 18 '11 at 3:58
6  
I'm very aware, which is why my answer is "no, there is no way to check just for 3G". – darvids0n Aug 18 '11 at 4:08
2  
You should go with the third option, with the default being 'yes it has 3G' and then make updates as new devices come out. If the toggle won't do anything on a device without 3G, it's harmless for future devices to see it (and you'll still have some window of time to update before they could). – MaxGabriel Jan 18 at 8:35

Hi you should be able to check if it has the pdp_ip0 interface

- (bool) hasCellular {
    struct ifaddrs * addrs;
    const struct ifaddrs * cursor;
    bool found = false;
    if (getifaddrs(&addrs) == 0) {
        cursor = addrs;
        while (cursor != NULL) {
            NSString *name = [NSString stringWithUTF8String:cursor->ifa_name];
                if ([name isEqualToString:@"pdp_ip0"]) 
                    found = true;
            }
            cursor = cursor->ifa_next;
        }
        freeifaddrs(addrs);
    }
    return found;   
}

This doesn't use any private apis

share|improve this answer
I found a similar answer here that seems to be pretty robust. Good thinking! – darvids0n Jan 29 at 0:36
Several errors in the given code sample, but the idea is sound. I provided correction in an edit. – isoiphone Mar 27 at 1:15
up vote 4 down vote accepted

This is not currently possible as of iOS 4.3.

I've filled an enhancement request.

share|improve this answer

One way of doing it is to ask for the users location. When it is as accurate as possibLe, you will know if the device have GPS. All devices that have GPS will have 3G. And those that don't GPS won't have 3G.

share|improve this answer
What do you compare it with to make this determination? – CuriousRabbit Jan 24 at 19:23
That's also a very long and expensive process to get that information. Also, when indoor, most GPS devices uses WiFi anyway since precision is better in theses conditions. – gcamp Jan 26 at 2:21

I'd think you should be able to use the CoreTelephony Framework.

It does call out that it is for carriers to use, so I am not sure if it is against TOS to access it.

Carriers can use this information to write applications that provide services only for their own subscribers

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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