Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I use private APIs to block incoming calls in an iOS application?

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?

like image 655
SimplyKiwi Avatar asked Sep 06 '11 21:09

SimplyKiwi


People also ask

What is private API in iOS?

by definition, your own classes and whatnot in your own app are your own, and private. They mean private api as in using functionality provided by iOS for internal-use only. e.g. as a hacked up example, you're allowed to use a SystemClock api, which under the hood uses a private HardwareClock API.

How do I block unknown calls automatically iOS?

To turn on Silence Unknown Callers, go to Settings > Phone, then scroll down, tap Silence Unknown Callers, and turn on the feature. Calls from unknown numbers are silenced and sent to your voicemail, and appear in your recent calls list.


2 Answers

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

like image 85
dkzm Avatar answered Oct 20 '22 05:10

dkzm


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

like image 34
Greg Martin Avatar answered Oct 20 '22 05:10

Greg Martin