文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

iOS中获取MCC和MNC的方法及iOS 16中CTCarrier被弃用的替代方案

2023-09-13 21:02

关注

一、使用公共API获取MCC和MNC

在iOS中,我们可以使用CoreTelephony框架来获取用户的移动国家代码(MCC)和移动网络代码(MNC)。具体操作步骤如下:

  1. 在Xcode项目中,点击项目目标,进入“General”选项卡,在“Frameworks, Libraries, and Embedded Content”下点击“+”按钮,搜索并添加CoreTelephony.framework

  2. 在需要获取MCC和MNC信息的Swift文件顶部导入CoreTelephony框架:

import CoreTelephony
  1. 创建一个CTTelephonyNetworkInfo实例:
let networkInfo = CTTelephonyNetworkInfo()
  1. 使用CTTelephonyNetworkInfo实例的serviceSubscriberCellularProviders属性获取包含CTCarrier对象的字典。字典中的每个键都对应用户设备中的一个运营商:
if let carrierInfo = networkInfo.serviceSubscriberCellularProviders {    for (key, carrier) in carrierInfo {        // 获取每个运营商的MCC和MNC        let mobileCountryCode = carrier.mobileCountryCode        let mobileNetworkCode = carrier.mobileNetworkCode        print("Carrier: \(key), MCC: \(String(describing: mobileCountryCode)), MNC: \(String(describing: mobileNetworkCode))")    }}

CTCarrier实例的mobileCountryCodemobileNetworkCode属性将给出MCC和MNC值。需要注意的是,如果设备没有SIM卡、处于飞行模式或未连接到蜂窝网络,此方法可能返回nil。在应用程序中,应适当处理这些情况。

二、iOS 16中CTCarrier被弃用后的替代方案

根据Apple 开发者文档中描述,CTCarrier在iOS 16.0中会被取消。
经过了iOS16.1-iOS 16.4,这一天终于来了。新版本Xcode 14.3 打包,在iOS 16.4以上,CTCarrier的属性都被禁用了,直接返回65535或者- -

@available(iOS, introduced: 4.0, deprecated: 16.0, message: "Deprecated with no replacement")open class CTCarrier : NSObject {            @available(iOS, introduced: 4.0, deprecated: 16.0, message: "Deprecated; returns '--' at some point in the future")    open var carrierName: String? { get }            @available(iOS, introduced: 4.0, deprecated: 16.0, message: "Deprecated; returns '65535' at some point in the future")    open var mobileCountryCode: String? { get }            @available(iOS, introduced: 4.0, deprecated: 16.0, message: "Deprecated; returns '65535' at some point in the future")    open var mobileNetworkCode: String? { get }                @available(iOS, introduced: 4.0, deprecated: 16.0, message: "Deprecated; returns '--' at some point in the future")    open var isoCountryCode: String? { get }                @available(iOS, introduced: 4.0, deprecated: 16.0, message: "Deprecated; returns YES at some point in the future")    open var allowsVOIP: Bool { get }}

若要使用私有API,可以按照以下步骤操作:
(请注意,使用私有API可能导致应用被拒绝,且这些API可能在未来的iOS版本中发生变化或被移除。因此,在可能的情况下,最好依赖于公共API。)

API被弃用,苹果可能会提供替代的公共API。

要使用私有API,可以按照以下步骤操作:

  1. 首先,在Swift项目中创建一个桥接头文件,以便访问Objective-C函数。具体操作如下:
    a. File > New > File > Header File,将其命名为BridgingHeader.h
    b. 转到项目目标的Build Settings选项卡,搜索“Objective-C Bridging Header”并设置值为BridgingHeader.h文件的路径。路径应该类似于:$(PROJECT_DIR)/YourProjectName/BridgingHeader.h

  2. 将以下代码添加到BridgingHeader.h文件中,以暴露私有API:

#import __BEGIN_DECLSextern NSString* const CTRadioAccessTechnologyDidChangeNotification;extern NSString* const CTSubscriberInfo;CFNotificationCenterRef _CTServerConnectionCreate(CFAllocatorRef, void(*)(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo), int*);void _CTServerConnectionAddToRunLoop(CFNotificationCenterRef, CFRunLoopRef, CFStringRef);void _CTServerConnectionSetTargetQueue(CFNotificationCenterRef, dispatch_queue_t);CTTelephonyCenterAddObserver(id, CFNotificationCallback, CFStringRef, void *, CFNotificationSuspensionBehavior);__END_DECLS
  1. 在Swift文件中导入CoreTelephony框架和桥接头文件:
import CoreTelephonyimport Foundation
  1. 定义一个函数,当CTCarrier发生变化时将被调用:
func radioAccessTechnologyDidChange(notification: Notification) {    if let userInfo = notification.userInfo as? [String: AnyObject],       let servingCell = userInfo["kCTIndicatorsGradedServingCellDescription"] as? [String: AnyObject],       let mcc = servingCell["MCC"] as? Int,       let mnc = servingCell["MNC"] as? Int {        print("MCC: \(mcc), MNC: \(mnc)")    }}
  1. 设置回调并为CTCarrier变化通知添加观察者:
let notificationCenter = CFNotificationCenterGetDarwinNotifyCenter()let callback: CFNotificationCallback = { center, observer, name, object, userInfo in    let notification = Notification(name: Notification.Name(rawValue: name! as String), object: nil, userInfo: userInfo as? [AnyHashable: Any])    radioAccessTechnologyDidChange(notification: notification)}let notificationName = "kCTIndicatorsSignalStrengthNotification" as CFStringCFNotificationCenterAddObserver(notificationCenter, nil, callback, notificationName, nil, .deliverImmediately)

三、尝试混淆私有API获取

使用私有API时,为了规避App Store审核,可以尝试混淆私有API的调用。请注意,这种做法并不能保证你的应用能够通过审核,因为苹果可能会采用其他方法来检测私有API的使用。此外,依赖私有API可能导致应用在未来的iOS版本中出现兼容性问题。

以下是一个尝试混淆私有API调用的例子:

  1. 首先,确保已经按照前面的说明创建了一个桥接头文件(BridgingHeader.h)。

  2. BridgingHeader.h文件中,将私有API的声明改为动态获取。删除原有的私有API声明,并添加以下代码:

#import __BEGIN_DECLSCFNotificationCenterRef (*_CTServerConnectionCreate)(CFAllocatorRef, void(*)(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo), int*);void (*_CTServerConnectionAddToRunLoop)(CFNotificationCenterRef, CFRunLoopRef, CFStringRef);void (*_CTServerConnectionSetTargetQueue)(CFNotificationCenterRef, dispatch_queue_t);CTTelephonyCenterAddObserver(id, CFNotificationCallback, CFStringRef, void *, CFNotificationSuspensionBehavior);__END_DECLS
  1. 在Swift文件中,使用动态库加载(dlopen)和符号查找(dlsym)来获取私有API的函数指针。确保已经导入了CoreTelephony框架和Foundation框架:
import CoreTelephonyimport Foundation
  1. 实现一个方法来获取私有API的函数指针:
func getPrivateAPIFunctionPointers() {    let coreTelephonyHandle = dlopen("/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony", RTLD_LAZY)    if coreTelephonyHandle != nil {        let createFunction = dlsym(coreTelephonyHandle, "_CTServerConnectionCreate")        let addToRunLoopFunction = dlsym(coreTelephonyHandle, "_CTServerConnectionAddToRunLoop")        let setTargetQueueFunction = dlsym(coreTelephonyHandle, "_CTServerConnectionSetTargetQueue")        _CTServerConnectionCreate = unsafeBitCast(createFunction, to: type(of: _CTServerConnectionCreate))        _CTServerConnectionAddToRunLoop = unsafeBitCast(addToRunLoopFunction, to: type(of: _CTServerConnectionAddToRunLoop))        _CTServerConnectionSetTargetQueue = unsafeBitCast(setTargetQueueFunction, to: type(of: _CTServerConnectionSetTargetQueue))        dlclose(coreTelephonyHandle)    }}
  1. 在需要获取MCC和MNC的地方,调用getPrivateAPIFunctionPointers()方法来获取私有API的函数指针。然后按照之前的步骤设置回调和添加观察者。

请注意,尽管这种方法可以在一定程度上混淆私有API的使用,但无法保证应用能够通过App Store的审核。此外,依赖私有API可能导致应用在未来的iOS版本中出现兼容性问题。

来源地址:https://blog.csdn.net/sinat_15735647/article/details/130577032

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯