使用核心电话技术实现通用应用
我的应用程序正在使用核心电话框架。我的应用程序是一个通用应用程序,支持 Ipad 和 Iphone。我在 Verizon Ipad 上进行了测试,我能够使用核心电话获得运营商。我应该如何处理仅在 Ipad 设备上的核心电话Wifi.Will 核心电话类在带有 Wifi 的 ipad 上返回 NULL,或者它会使我在这些设备上的应用程序崩溃。
CTTelephonyNetworkInfo *networkInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [networkInfo subscriberCellularProvider];
NSString *currentCountry=[carrier isoCountryCode];
[networkInfo release];
我用过这个,在 Verizon Ipad 上运行得很好。
My Application is using Core Telephony Framework.My application is a universal app and supports both Ipad and Iphone.I tested on Verizon Ipad and I was able to get the carrier using Core Telephony.How should I deal with core telephony on Ipad devices only with Wifi.Will core telephony class returns NULL on ipad with Wifi or is it going to crash my application on those devices.
CTTelephonyNetworkInfo *networkInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [networkInfo subscriberCellularProvider];
NSString *currentCountry=[carrier isoCountryCode];
[networkInfo release];
I use this and it works fine on Verizon Ipad.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚为你运行了代码,它没有崩溃。
这是 CTCarrier 的转储
I just ran the code for you, and it doesn't crash.
This is the dump of the CTCarrier