How to identify when SIM changed in iPhone?

2019-03-28 11:40发布

How to find if a user changes his SIM card from his phone(iPhone). we can find "mobileCountryCode,isoCountryCode,mobileCountryCode and mobileNetworkCode" through programatically these are not specific to particular SIM, these are specific to operator, is there any way to identify when user changes his SIM card from his iPhone.

Please any one help me on this.

Thanks in advance.

2条回答
Deceive 欺骗
2楼-- · 2019-03-28 12:09

You are able to sign up for a notification using subscriberCellularProviderDidUpdateNotifier in CTTelephonyNetworkInfo

However you will only be notified if the swap occurs while your app is running. You will still be unable to detect if the user changes the SIM to another SIM from the same operator when your app is not running.

查看更多
霸刀☆藐视天下
3楼-- · 2019-03-28 12:13

Hi tony You can use this for finding sim has been changed or not.

NSString *currentIMSINo = CTSIMSupportCopyMobileSubscriberIdentity(NULL);
查看更多
登录 后发表回答