Is there any way of getting the mnc and mcc numbers on an iPhone?
|
feedback
|
|
You need the CoreTelephony framework CTCarrier *carrier = [[CTCarrier alloc] init]; to get MNC, NSString *mnc = [carrier mobileNetworkCode]; to get MCC, NSString *mcc = [carrier mobileCountryCode]; | |||
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, | |||||
feedback
|