iOS CallKit来电识别和号码拉黑

2017-09-18  本文已影响0人  Rex_

前言

最近两天公司有需求研究CallKit来电识别和号码拉黑,在网上找了一些相关博文。但是发现对于没接触过这方面的人来说,还是会遇到一些问题,所以打算自己再写一篇详尽的文章。
懒得看的请直接下载最下面demo。

细节

在没有了解CallKit这两个功能之前,因为下面的内容,导致产生一些失(cao)败(dan)的尝试。包括但不限于以下:

过程

1. 首先,建立一个工程或者在原有工程上,加入扩展应用 Call Directory Extension:

选择new->target->Call Directory Extension 1B5104F2-0BEB-40B9-BB09-30E3CB814253.png

权限打开方式:设置->电话->来电阻止与身份识别

Phone — prefs:root=Phone
Phone — prefs:root=Phone&CALL_BLOCKING&IDENTIFICATION

2. 接着,进行Main App和Extension App之间数据通讯。

共享数据.png
  1. 使用共享url地址,写入文件
    NSURL *containerURL = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:@"group.RexLocalGroup"];
  1. 使用本地沙盒,写入沙盒中
    NSUserDefaults *myDefaults = [[NSUserDefaults alloc] initWithSuiteName:@"group.RexLocalGroup"];
    NSURL *containerURL = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:@"group.RexLocalGroup"];
    containerURL = [containerURL URLByAppendingPathComponent:@"Library/"];
    NSString * dbPath = [NSString stringWithFormat:@"%@%@",containerURL.absoluteString, @"LocalNumberDB.sqlite"];
    _dbQueue = [FMDatabaseQueue databaseQueueWithPath:dbPath];
    NSArray * contacts = [[FMDataBaseManager shareInstance] getAllContacts:kNumberTable];
    for (int i= 0; i < contacts.count; i ++) {
        @autoreleasepool {
            ContactModel * contact = contacts[i];
            if (contact.phoneNumber && contact.identification) {
                CXCallDirectoryPhoneNumber phoneNumber = [contact.phoneNumber longLongValue];
                NSString * label = contact.identification;
                [context addIdentificationEntryWithNextSequentialPhoneNumber:phoneNumber label:label];
            }
            contact = nil;
        }
    }

参考项目下载

做了一个简单完整的demo放在了GitHub上,有兴趣可以下载。

[link]https://github.com/Rex-xingjl/CallKitDemo

上一篇下一篇

猜你喜欢

热点阅读