Is there a way to know the cell carrier on an iPhone programatically ?

** update **

I am looking for the carrier name which the iPhone is connected to.

link|improve this question

51% accept rate
3  
What, you mean there are iPhone carriers other than AT&T? <g/d/r> – Joel Coehoorn May 12 '09 at 15:49
Are you talking about who's service the phone is currently connected to (i.e. might be roaming), or who is the carrier you get bills from? – crashmstr May 12 '09 at 15:54
4  
You might not have heard of it, but there are other countries in the world. And interestingly, they do have mobile technology. – Koray Balci May 12 '09 at 15:56
2  
Again - have a sense of humor folks. – Shane C. Mason May 12 '09 at 15:58
The only mechanism to detect if you are roaming is through reading an undocumented system file See previous question which is against the Apple rules – joneswah Jan 10 at 0:17
feedback

4 Answers

up vote 24 down vote accepted

In iOS 4, the CoreTelephony framework is useable, here's a snippet to get the carrier name:

CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [netinfo subscriberCellularProvider];
NSLog(@"Carrier Name: %@", [carrier carrierName]);
[netinfo release];
link|improve this answer
3  
According to Apple's documentation, this always give you info about your honme carrier, not the carrier you're currently connected to when roaming. – phoenies Aug 5 '11 at 14:28
2  
Don't forget to put #import <CoreTelephony/CTTelephonyNetworkInfo.h> at the top of your file. – zekel Oct 26 '11 at 19:35
1  
Add #import <CoreTelephony/CTCarrier.h> otherwise it will show warning that " carrierName method not found ". – Hadley Mar 28 at 5:58
feedback

There is no public API for getting the carrier name. If you don't need to publish on the App Store you could look at using private api's.

VVCarrierParameters.h in the VisualVoiceMail package seems to have a carrierServiceName class method that might be what you need. Drop that header in your project and call [VVCarrierParameters carrierServiceName].

Note your app will most likely be rejected if you do this.

link|improve this answer
How to fix the Symbols(s) not found error when linking? Thanks – ohho Jun 9 '10 at 9:31
feedback

Just to make a note here.. I tested this API on different SIMs and it seems that the name of the operator the iPhone is locked to is returned with [carrer carrierName]!!

I tested this on 2 iphones, one locked and the other not, and for the locked one, regardless of the SIM provider, it returns the name of the operator it is locked to everytime i run my test app. Note however that the MNC does change!

link|improve this answer
feedback

https://developer.apple.com/iphone/prerelease/library/documentation/NetworkingInternet/Reference/CTCarrier/Reference/Reference.html#//apple_ref/doc/uid/TP40009596-CH1-DontLinkElementID_3

There is a such way however it's only available on iOS 4 so you won't be able to use it on previous versions. And this probably breaks your backward compatibility too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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