gpt4 book ai didi

ios - CTTelephonyNetworkInfo().serviceSubscriberCellularProviders 和 CTTelephonyNetworkInfo().serviceCurrentRadioAccessTechnology 中的关键是什么

转载 作者:行者123 更新时间:2023-12-01 22:56:50 24 4
gpt4 key购买 nike

我正在使用 CoreTelephony 框架来从中获取有关蜂窝数据提供商的一些信息。我执行以下代码:

let obj = CTTelephonyNetworkInfo()
if let array = obj.serviceSubscriberCellularProviders {
for (key, value) in array {
print("{")
print("\(key)=<\(value.carrierName)>")
print("\(key)=<\(value.mobileCountryCode)>")
print("\(key)=<\(value.mobileNetworkCode)>")
print("}")
}
}

if let array = obj.serviceCurrentRadioAccessTechnology {
for (key, value) in array1 {
print("{")
print("\(key)=<\(value)>")
print("}")
}
}

我得到这个输出:

{
0000000100000001=<Optional("Carrier")>
0000000100000001=<Optional("432")>
0000000100000001=<Optional("11")>
}
{
0000000100000001=<CTRadioAccessTechnologyLTE>
}

问题我想知道“0000000100000001”是什么以及我们可以从中获得什么信息?

最佳答案

official docs现在已经很清楚了:

Although the actual value of a key isn’t important, you can also use it to get the carrier information associated with the service. To do so, pass the key to the serviceSubscriberCellularProviders dictionary.

因此,您可以将“0000000100000001”作为 key 传递给 serviceSubscriberCellularProviders

我认为 API 已更改以适应 iPhones with multiple SIMs .

关于ios - CTTelephonyNetworkInfo().serviceSubscriberCellularProviders 和 CTTelephonyNetworkInfo().serviceCurrentRadioAccessTechnology 中的关键是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58426438/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com