美文网首页
iOS通讯录开发

iOS通讯录开发

作者: YoungPeng | 来源:发表于2021-04-15 16:32 被阅读0次

前言

记录下在应用内获取通讯录的相关知识点,涉及到通讯录权限配置,通讯录数据的获取以及数据按首字母排序。

系统通讯录权限的获取

  1. iOS关于权限这一块不需要多讲,访问位置信息,麦克风,通讯这些都需要权限设置,这里就贴一下通讯录的,Info plist文件中添加:

key:Privacy - Contacts Usage Descriptio

value:是否允许(应用名)访问您的通讯录?

2.对于通讯录权限的处理

#import <Contacts/Contacts.h>

- (void)requestContactAuthorAfterSystem{
    
    //获取当前的授权状态
    CNAuthorizationStatus status = [CNContactStore authorizationStatusForEntityType:CNEntityTypeContacts];
    
    if (status == CNAuthorizationStatusNotDetermined) {
        //用户还没有就应用程序是否可以访问联系人数据做出选择。
        //请求弹窗选择
        CNContactStore *store = [[CNContactStore alloc] init];
        [store requestAccessForEntityType:CNEntityTypeContacts completionHandler:^(BOOL granted, NSError*  _Nullable error) {
            if (error) {
                NSLog(@"授权失败");
            }else {
               
                //成功授权
                //-----todo----
            }
        }];
    }
    else if(status == CNAuthorizationStatusRestricted)
    {
        //用户没有权限访问
    }
    else if (status == CNAuthorizationStatusDenied)
    {
        //用户已拒绝,引导用户开启
        UIAlertController *alertController = [UIAlertController
            alertControllerWithTitle:@"请授权通讯录权限"
            message:@"请在iPhone的\"设置-隐私-通讯录\"选项中,允许(应用名)访问你的通讯录"
            preferredStyle: UIAlertControllerStyleAlert];

        UIAlertAction *OKAction = [UIAlertAction actionWithTitle:@"好的" style:UIAlertActionStyleDefault handler:nil];
        [alertController addAction:OKAction];
        [self presentViewController:alertController animated:YES completion:nil];
    }
    else if (status == CNAuthorizationStatusAuthorized)//已经授权
    {
        //有通讯录权限
        //-----todo----
    }
    
}

读取系统通讯录的数据

在获取到通讯录权限后进行数据的请求

//获取通讯录数据
- (void)loadData {

    [SVProgressHUD showWithStatus:@"加载中"];
    // 获取指定的字段,并不是要获取所有字段,需要指定具体的字段
    //CNContactGivenNameKey联系人的名字 CNContactFamilyNameKey联系人的姓氏CNContactPhoneNumbersKey电话号码
    NSArray *keysToFetch = @[CNContactGivenNameKey, CNContactFamilyNameKey, CNContactPhoneNumbersKey];
    CNContactFetchRequest *fetchRequest = [[CNContactFetchRequest alloc] initWithKeysToFetch:keysToFetch];
    CNContactStore *contactStore = [[CNContactStore alloc] init];
     
    //枚举所有匹配到的联系人  这个方法将一直等待,直到枚举完成 如果有需要可以将其异步
    [contactStore enumerateContactsWithFetchRequest:fetchRequest error:nil usingBlock:^(CNContact * _Nonnull contact, BOOL * _Nonnull stop) {
       
        //拼接姓名
        NSString *nameStr = [NSString stringWithFormat:@"%@%@",contact.familyName,contact.givenName];
         //获取电话号码
        NSArray *phoneNumbers = contact.phoneNumbers;
        YXAddressBookModel *model = [[YXAddressBookModel alloc] init];
        for (CNLabeledValue *labelValue in phoneNumbers) {
            
            //遍历一个人名下的多个电话号码
            CNPhoneNumber *phoneNumber = labelValue.value;
            NSString * string = phoneNumber.stringValue ;
               
            //去掉电话中的特殊字符
            string = [string stringByReplacingOccurrencesOfString:@"+86" withString:@""];
            string = [string stringByReplacingOccurrencesOfString:@"-" withString:@""];
            string = [string stringByReplacingOccurrencesOfString:@"(" withString:@""];
            string = [string stringByReplacingOccurrencesOfString:@")" withString:@""];
            string = [string stringByReplacingOccurrencesOfString:@" " withString:@""];
            string = [string stringByReplacingOccurrencesOfString:@" " withString:@""];
            NSLog(@"姓名=%@, 电话号码是=%@", nameStr, string);
        }
        [SVProgressHUD dismiss];
        /*
        ---todo---  
        数据展示刷新表视图等
        */
    }];
}

数据的处理

根据首字母对数据进行排序,使用的排序类 UILocalizedIndexedCollation

//通过首字母排序
-(NSMutableArray *)sortObjectsAccordingToInitialWith:(NSArray *)arr {
 
    // 初始化UILocalizedIndexedCollation
    UILocalizedIndexedCollation *collation = [UILocalizedIndexedCollation currentCollation];
 
    //得出collation索引的数量,这里是27个(26个字母和1个#)
    NSInteger sectionTitlesCount = [[collation sectionTitles] count];
    //初始化一个数组newSectionsArray用来存放最终的数据,我们最终要得到的数据模型应该形如@[@[以A开头的数据数组], @[以B开头的数据数组], @[以C开头的数据数组], ... @[以#(其它)开头的数据数组]]
    NSMutableArray *newSectionsArray = [[NSMutableArray alloc] initWithCapacity:sectionTitlesCount];
 
    //初始化27个空数组加入newSectionsArray
    for (NSInteger index = 0; index < sectionTitlesCount; index++) {
        NSMutableArray *array = [[NSMutableArray alloc] init];
        [newSectionsArray addObject:array];
    }
 
    //将每个名字分到某个section下
    /*
     - (NSInteger)sectionForObject:(id)object collationStringSelector:(SEL)selector;
    // 返回将包含该对象的section的索引
    // 选择器不能接受任何参数并返回一个NSString对像
    */
    //遍历数组,YXAddressBookModel
    for (YXAddressBookModel *personModel in arr) {
        //获取name属性的值所在的位置,比如"林丹",首字母是L,在A~Z中排第11(第一位是0),sectionNumber就为11
        NSInteger sectionNumber = [collation sectionForObject:personModel collationStringSelector:@selector(name)];
        //把name为“林丹”的p加入newSectionsArray中的第11个数组中去
        NSMutableArray *sectionNames = newSectionsArray[sectionNumber];
        [sectionNames addObject:personModel];
    }
 
    //对每个section中的数组按照name属性排序
    for (NSInteger index = 0; index < sectionTitlesCount; index++) {
        NSMutableArray *personArrayForSection = newSectionsArray[index];
        NSArray *sortedPersonArrayForSection = [collation sortedArrayFromArray:personArrayForSection collationStringSelector:@selector(name)];
        newSectionsArray[index] = sortedPersonArrayForSection;
    }
    
    //最后返回的应该是一个装有27个数组的数组对象
    return newSectionsArray;
}

优化

在通讯录的数据比较多的时候,可以考虑将获取到的数据保存在本地,下次进来页面时先判断本地是否有存储的数据,没有再去访问系统通讯录,这样的话记得同步本地和系统通讯录的数据。

结语

swift版本demo地址

相关文章

  • iOS开发系列--通讯录、蓝牙、内购、GameCenter、iC

    iOS开发系列--通讯录、蓝牙、内购、GameCenter、iCloud、Passbook系统服务开发汇总http...

  • iOS学习笔记29-系统服务(二)通讯录

    一、通讯录 iOS中的通讯录是存储在数据库中的,由于iOS的权限设计,开发人员是不允许直接访问通讯录数据库的,实现...

  • ios9下vue使用踩坑记录

    问题描述 使用vue开发单页的通讯录选择器组件后。 在iOS 10 和 iOS 8下都正常运行。 就在iOS 9下...

  • iOS13&Xcode11适配问题

    1.通讯录权限问题iOS 13中将禁止应用开发者访问用户通讯录备注信息,需将keys中的CNContactNote...

  • iOS通讯录开发

    场景一:直接选择一个联系人的电话号码 这里不需要先获取所有的联系人自己做联系人列表,直接使用系统自带的Addres...

  • iOS通讯录开发

    今天正好用到通讯录,总结一下使用过程.首先苹果的通讯录是保存在数据库里面的,苹果不允许开发者直接访问数据库.不过可...

  • iOS通讯录开发

    苹果允许访问用户的通讯录,提供的api分为两种,区别在于有没有UI界面,工作中一般都会选用有UI界面,从iOS6开...

  • iOS通讯录开发

    前言 记录下在应用内获取通讯录的相关知识点,涉及到通讯录权限配置,通讯录数据的获取以及数据按首字母排序。 系统通讯...

  • iOS 中简单通讯录列表的使用

    iOS 中简单通讯录列表的使用 最近开发的App有读取用户通讯录的需要,做完这块功能之后顺便整理了一下流程,如下:...

  • iOS9.0之前和之后获取通讯录的方法

    1. iOS 9.0之前获取通讯录的方法 打印结果: 2. iOS 9.0 及 iOS 9.0之后获取通讯录的方法...

网友评论

      本文标题:iOS通讯录开发

      本文链接:https://www.haomeiwen.com/subject/ntidlltx.html