有没有办法获取iPhone的运营商信息?

时间:2011-02-11 16:27:33

标签: iphone uidevice

我知道这个问题是在2008年被问到的(答案是否定的),但是使用新的Verizon iPhone,API中是否有任何可以提供此信息的信息?

我发现UIDevice(您通常会获得其他相关信息)中没有任何内容与此有关,但model中的“UIDevice”属性可能具有特定的Verizon名称?有没有人跑过来找到这个?感谢

1 个答案:

答案 0 :(得分:4)

CTTelephonyNetworkInfo *netInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [netInfo subscriberCellularProvider];
NSString *mcc = [carrier mobileCountryCode];
NSString *mnc = [carrier mobileNetworkCode];

Mobile Network Codes (MNC) USA

iOS4的

http://developer.apple.com/iphone/library/documentation/NetworkingInternet/Reference/CTCarrier/Reference/Reference.html