Is there a way to get information about the carrier of iPhones programmatically?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

1st Import #import <CoreTelephony/CTTelephonyNetworkInfo.h> make sure you have the Framework installed too.

CTTelephonyNetworkInfo *phoneInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *phoneCarrier = [phoneInfo subscriberCellularProvider];
NSLog(@"Carrier = %@", [phoneCarrier carrierName]);
[phoneInfo release];
link|improve this answer
1  
Notice that this tells you only the original SIM carrier, not current one in case of roaming. – JOM Jan 6 at 13:55
feedback

Your Answer

 
or
required, but never shown

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