유심에는 어떤 코드들이 있는데
국가코드(MCC), 통신사코드(MNC) 등이있다.
MCC, MNC란 용어를 몰라서 얼마전에 어버버한 기억때문에 정리해본다.
CTCarrier에서 가져올 수가 있는데 CTCarrier는 CTTelephonyNetworkInfo로부터 가져 올 수 있다.
CTTelephonyNetworkInfo *phoneInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [phoneInfo subscriberCellularProvider];
MCC : carrier.mobileCountryCode
MNC : carrier.mobileNetworkCode
통신사 | MNC |
SKT | 05 02 11 (알뜰폰 KCT) |
KT | 08 |
UPLUS | 06 |
'IT > iOs' 카테고리의 다른 글
아이폰 복구모드 적용 방법 (0) | 2021.07.07 |
---|---|
No accounts with App Store Connect access have been found for the team App Store Connect access is required for App Store Connect distribution. (0) | 2021.03.16 |
2020 iOS 보안 이슈 (0) | 2021.03.04 |
Missing or invalid signature 문제 (0) | 2020.06.03 |
Incompatible integer to pointer conversion assigning to 'int *' from 'int' 오류 (0) | 2020.02.21 |