Is there any way of getting the mnc and mcc numbers on an iPhone?
You need the CoreTelephony framework
CTTelephonyNetworkInfo *networkInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [networkInfo subscriberCellularProvider];
to get MNC,
NSString *mnc = [carrier mobileNetworkCode];
to get MCC,
NSString *mcc = [carrier mobileCountryCode];
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,
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With