I would like to be able to selectively block incoming calls in an iOS application I'm writing. This is intended for personal use, not the App Store, so I'm fine with using private APIs to accomplish this.

I have recently come across the Core Telephony framework. Is there a way to use this framework to block calls? If not, what private APIs could I use to do this?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Are you sure it does not? code examples on http://tech.ruimaninfo.com/?p=83 shows how to do such things. Core Telephony headers in SDK are not complete. Of course this means no app store this is my code fragment based on example I linked

if ([str1 isEqualToString:@"kCTCallIdentificationChangeNotification"])
{
    NSDictionary *info = (__bridge NSDictionary *)userInfo;
    CTCall2 *call = (__bridge CTCall *)[info objectForKey:@"kCTCall"];
    NSString *caller = CTCallCopyAddress(NULL, call);
    NSLog(@"Caller %@",caller);
    if ([caller isEqualToString:@"+1555665753"])
    {
       //disconnect this call
       CTCallDisconnect(call);

}

additional definitions needed:

typedef struct __CTCall CTCall;
extern NSString *CTCallCopyAddress(void*, CTCall *);
extern void CTCallDisconnect(CTCall*);

and you need to monitor telephony center's callback(see linked example) I tested this fragment on my iOS5 device

link|improve this answer
I no I can't put it in on the App Store but how would I block a specific number using that link? – iBrad Apps Dec 1 '11 at 12:32
I updated my answer – Vikarti Anatra Dec 3 '11 at 6:35
Not yet, I don't see any changes :/ – iBrad Apps Dec 3 '11 at 6:41
check again -:) – Vikarti Anatra Dec 3 '11 at 6:56
Niceeee. I honestly think you get at least 10 up votes over the next few months since that code is very helpful! One last thing, how would I keep the app running so that, that code you posted is called whenever I get a call even if the app is closed? – iBrad Apps Dec 3 '11 at 7:00
show 4 more comments
feedback

Core Telephony doesn't support this. To my knowledge there is no way to do this with any known private APIs either.

link|improve this answer
2  
How does iBlackList and MCaller do it then? – iBrad Apps Sep 7 '11 at 1:10
feedback

I am not sure if thats possible. But i just have a hunch. Aren't calls blocked when the phone is in "Airplane mode". So why not try to get the phone in Airplane mode if its possible.

link|improve this answer
In Airplane mode, all radios are powered down, so it would be physically impossible to actually receive a call. – Nick Forge Dec 1 '11 at 7:13
Correct and that is NOT what I want – iBrad Apps Dec 3 '11 at 6:42
feedback

Your Answer

 
or
required, but never shown

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