1
iOS 10.x에서 프로그래밍 방식으로 CellID 및 LAC을 얻으려고합니다.iOS 10.x에서 프로그래밍 방식으로 CellID 및 LAC 가져 오기
시도했지만 Get CellID, MCC, MNC, LAC, and Network in iOS 5.1 8.3 이상에서 작동하지 않습니다.
누구든지 나를 이룰 수 있습니까?
iOS 10.x에서 프로그래밍 방식으로 CellID 및 LAC을 얻으려고합니다.iOS 10.x에서 프로그래밍 방식으로 CellID 및 LAC 가져 오기
시도했지만 Get CellID, MCC, MNC, LAC, and Network in iOS 5.1 8.3 이상에서 작동하지 않습니다.
누구든지 나를 이룰 수 있습니까?
//mcc
CTTelephonyNetworkInfo *netInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [netInfo subscriberCellularProvider];
NSString *mcc = [carrier mobileCountryCode];
//mnc
NSString *mnc = [carrier mobileNetworkCode];
NSLog(@"mcc: %@, mnc: %@", mcc, mnc);