how to regognize that user call somebody from code?(means i have an app and want to do sth when user call somebody)

link|improve this question

72% accept rate
feedback

2 Answers

You can't do that I'm afraid, firstly your app won't be running when they are calling someone and secondly you can't access the phone functions from the SDK. Might be possible with a background process on a jail broken phone.

link|improve this answer
is it possible with local notification? – user471416 Oct 14 '10 at 17:37
feedback

This is not possible, not through code nor through notifications. You can't do anything to stop this, when a phonecall comes in, your application gets suspended, like as if you'd press home in iOS 4 and it will multitask if it has been programed to do so. Have a look at the UIApplication implementations for multitasking and do your work there.

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.