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.

link|improve this question

feedback

2 Answers

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.

link|improve this answer
Do you have any example to listen the notification (while getting the incoming call) ? – jfalexvijay Jan 25 '11 at 12:42
In your app delegate class, implement the applicationWillResignActive: method. Or register as observer of the UIApplicationWillResignActiveNotification notification at the NSNotificationCenter. – DarkDust Jan 25 '11 at 13:04
feedback
up vote 1 down vote accepted

Take a look at following URL
Could be helpful for you Core Telephony

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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