Is there any way of getting the mnc and mcc numbers on an iPhone?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

You need the CoreTelephony framework

CTCarrier *carrier = [[CTCarrier alloc] init];

to get MNC, NSString *mnc = [carrier mobileNetworkCode];

to get MCC, NSString *mcc = [carrier mobileCountryCode];

link|improve this answer
Thanks. The question was asked in 3.2 time so this wasn't a solution for my first problem. But that was over a year ago so if I don't have to be compatible with old devices, this is the best solution. – Johan Mar 21 '11 at 6:44
feedback

You can use the methods of the CTCarrier class to retrieve Country and network code. However this is only for the home provider (=SIM Card) and not the provider the phone is currently booked in,

link|improve this answer
Any way of getting the one the phone is currently booked in? – Kasium May 10 '11 at 8:28
As far as I know there isn't an official method to do this at the moment. – holtmann Jul 5 '11 at 6:35
feedback

Your Answer

 
or
required, but never shown

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