在iOS 8.3中获取CellID,MCC,MNC,LAC,信号强度,质量和网络

时间:2015-04-22 11:16:34

标签: ios iphone-privateapi core-telephony signal-strength ios8.3

如何在ios 8.3中使用私有api获取cell id,因为之前的核心电话私有api在最新的ios sdk 8.3中不起作用。

2 个答案:

答案 0 :(得分:5)

你仍然可以使用它。它在iOS 8.3上工作。我不知道如何获得信号强度。 Apple最近在Core Telephony中改变了很多东西。 :(

CTTelephonyNetworkInfo *telephonyInfo = [CTTelephonyNetworkInfo new];
NSString *carrierNetwork = telephonyInfo.currentRadioAccessTechnology;
NSLog(@"Mobile Network): %@", carrierNetwork);

CTCarrier *carrier = [telephonyInfo subscriberCellularProvider];

NSString *mobileCountryCode = [carrier mobileCountryCode];
NSLog(@"Mobile Country Code (MCC): %@", mobileCountryCode);

NSString *mobileNetworkCode = [carrier mobileNetworkCode];
NSLog(@"Mobile Network Code (MNC): %@", mobileNetworkCode);

NSString *carrierName = [carrier carrierName];
NSLog(@"Mobile Network name: %@", carrierName);

NSString *isoCountryCode = [carrier isoCountryCode];
NSLog(@"Mobile Network isoCode: %@", isoCountryCode);

编辑:我找到了解决方案如何获得信号强度。 *!请注意,下面的解决方案使用私有API,因此Apple在提交到App Store时将被拒绝。

UIApplication *app = [UIApplication sharedApplication];
NSArray *subviews = [[[app valueForKey:@"statusBar"] valueForKey:@"foregroundView"] subviews];
NSString *dataNetworkItemView = nil;

for (id subview in subviews) {
    if([subview isKindOfClass:[NSClassFromString(@"UIStatusBarSignalStrengthItemView") class]]) {
        dataNetworkItemView = subview;
        break;
    }
}

int signalStrength = [[dataNetworkItemView valueForKey:@"signalStrengthRaw"] intValue];

NSLog(@"signal %d", signalStrength);

答案 1 :(得分:0)

Get CellID, MCC, MNC, LAC, and Network in iOS 5.1

你可以访问上面的链接,它可以得到ios 8.2下面的lac和cell。 如果你想获得高于ios 8.3的lac和cell,你应该添加权利:

<key>com.apple.CommCenter.fine-grained</key>
<array>
    <string>spi</string>
</array>

另外,它说你的手机需要越狱。

但实际上,我无法尝试真正的手机。如果你成功了,请分享,谢谢。