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

后端 未结 3 1038
北恋
北恋 2020-11-29 03:52

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 usin

相关标签:
3条回答
  • 2020-11-29 04:03

    Since iOS 10.0+ there is CallKit which includes a Call Blocking and Identification API: https://developer.apple.com/documentation/callkit

    (Information for people which find this in 2020 or in the future)

    0 讨论(0)
  • 2020-11-29 04:19

    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

    0 讨论(0)
  • 2020-11-29 04:24

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

    0 讨论(0)
提交回复
热议问题