Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to identify when SIM changed in iPhone?

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.

like image 220
Shiva Reddy Avatar asked Mar 09 '11 12:03

Shiva Reddy


2 Answers

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.

like image 111
Claus Broch Avatar answered Nov 04 '22 13:11

Claus Broch


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

NSString *currentIMSINo = CTSIMSupportCopyMobileSubscriberIdentity(NULL);
like image 42
Narendra Kumar Avatar answered Nov 04 '22 14:11

Narendra Kumar