Reputation: 3711
I am editing some thing in an iPhone editor application. That time, I am getting a call. How can I identify an incoming call by coding ?
If any one having idea about this, just share with us.
Upvotes: 0
Views: 925
Reputation: 3711
Take a look at following URL
Could be helpful for you
Core Telephony
Upvotes: 1
Reputation: 92442
You can't. This is actually a FAQ already :-) All you can do is implement the applicationWillResignActive
method in your application delegate (or listen to the corresponding notification). However, you also get this event when some alerts are shown or when the screen gets locked and you can't distinguish why you are getting the event.
Upvotes: 1