美文网首页iOS开发指南
iOS获取手机运营商

iOS获取手机运营商

作者: 海浪萌物 | 来源:发表于2018-11-22 11:45 被阅读27次
#import <CoreTelephony/CTTelephonyNetworkInfo.h>
#import <CoreTelephony/CTCarrier.h>

-(void)getcarrierName{
    CTTelephonyNetworkInfo *telephonyInfo = [[CTTelephonyNetworkInfo alloc] init];
    CTCarrier *carrier = [telephonyInfo subscriberCellularProvider];
    NSString *currentCountry=[carrier carrierName];
    NSLog(@"[carrier isoCountryCode]==%@,[carrier allowsVOIP]=%d,[carrier mobileCountryCode=%@,[carrier mobileCountryCode]=%@---%@",[carrier isoCountryCode],[carrier allowsVOIP],[carrier mobileCountryCode],[carrier mobileNetworkCode],currentCountry);
//    self.mobileNet=currentCountry;
}

相关文章

网友评论

    本文标题:iOS获取手机运营商

    本文链接:https://www.haomeiwen.com/subject/xgxlqqtx.html