MobileCOuntryCode iOS not working



从下面的帖子中,我试图检测iPhone 中的SIM

检测Sim卡是否可在iPhone程序中使用

我尝试了你提供的相同代码,但它总是返回我(null)。我添加了core telephony framework并导入了CTCarrier.h文件。我还有什么需要做的吗?

感谢

#import <CoreTelephony/CTCarrier.h>
#import <CoreTelephony/CTTelephonyNetworkInfo.h>
CTTelephonyNetworkInfo* info = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier* _carrier = info.subscriberCellularProvider;
NSLog(@"carrierName %@",_carrier.carrierName);
NSLog(@"isoCountryCode %@",_carrier.isoCountryCode);
NSLog(@"mobileCountryCode %@",_carrier.mobileCountryCode);
NSLog(@"mobileNetworkCode %@",_carrier.mobileNetworkCode);

试试这个方法,它奏效了。

相关内容

  • 没有找到相关文章

最新更新