I am using MFMessageComposeViewController to send text message via my App. But I have a problem when we remove the SIM and try to send message. Is there any delegate available to track whether the message will be sent / not?

link|improve this question

60% accept rate
Next time consult class reference before you waste time on typing such question. – TheBlack May 25 '11 at 21:05
Thanks @TheBlack for your comment. But your suggestion may not work in all cases. Learn the one given by @Nick Weaver – Abraham Durairaj May 26 '11 at 19:23
I searched for "sim card" in Xcode help and found CTTelephonyNetworkInfo in 15 seconds. Next, I came here, entered "sim card iphone" into search and found this answer You learn how to search before asking questions. – TheBlack May 26 '11 at 20:17
feedback

1 Answer

up vote 1 down vote accepted

You can use the CTTelephonyNetworkInfo class of the core telephony framework to gather information about the SIM card. Use the subscriberCellularProviderDidUpdateNotifier method to get notified about SIM card changes:

A block object that is dispatched on the default priority global dispatch queue when the user’s cellular provider information changes. This occurs, for example, if a user swaps the device’s SIM card with one from another provider, while your application is running.

link|improve this answer
awesome! sounds like a good idea. I will test and update here. – Abraham Durairaj May 25 '11 at 22:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.