当前位置: 首页 > 编程笔记 >

IOS中获取本地通讯录联系人以及汉字首字母排序

钮善
2023-03-14
本文向大家介绍IOS中获取本地通讯录联系人以及汉字首字母排序,包括了IOS中获取本地通讯录联系人以及汉字首字母排序的使用技巧和注意事项,需要的朋友参考一下

iOS中获取手机通讯录中的联系人信息:

/*** 加载本地联系人*/ 
- (void)loadLocalContacts 
{ 
  //新建一个通讯录类 
  ABAddressBookRef addressBooks = nil; 
   
  if (DeviceVersion < 6.0) { 
    addressBooks = ABAddressBookCreate(); 
  } else { 
    addressBooks = ABAddressBookCreateWithOptions(NULL, NULL); 
    //获取通讯录权限 
    dispatch_semaphore_t sema = dispatch_semaphore_create(0); 
    ABAddressBookRequestAccessWithCompletion(addressBooks, ^(bool granted, CFErrorRef error){dispatch_semaphore_signal(sema);}); 
    dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER); 
    dispatch_release(sema); 
  } 
   
  //判断授权状态 
  if (ABAddressBookGetAuthorizationStatus()!=kABAuthorizationStatusAuthorized) { 
    return ; 
  } 
   
  //获取通讯录中的所有人 
  CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBooks); 
  //通讯录中人数 
  CFIndex nPeople = ABAddressBookGetPersonCount(addressBooks); 
  NSMutableArray *persons = [[NSMutableArray alloc] init]; 
  for (int i = 0; i < nPeople; i++) { 
    //获取个人 
    ABRecordRef person = CFArrayGetValueAtIndex(allPeople, i); 
    //获取个人名字 
    NSString *firstName = (NSString *)ABRecordCopyValue(person, kABPersonFirstNameProperty); 
    NSString *lastName = (NSString *)ABRecordCopyValue(person, kABPersonLastNameProperty); 
    NSMutableString *name = [[NSMutableString alloc] init]; 
    if (firstName == nil && lastName == nil) { 
      NSLog(@"名字不存在的情况"); 
      name = nil; 
    } 
    if (lastName) { 
      [name appendString:lastName]; 
    } 
    if (firstName) { 
      [name appendString:firstName]; 
    } 
     
    ABMultiValueRef tmlphone = ABRecordCopyValue(person, kABPersonPhoneProperty); 
    NSString *telphone = (NSString *)ABMultiValueCopyValueAtIndex(tmlphone, 0); 
    if (telphone != nil) { 
      telphone = [telphone stringByReplacingOccurrencesOfString:@"-" withString:@""]; 
      NSString *title = [NSString stringWithFormat:@"%@(%@)",name,telphone]; 
      [persons addObject:title]; 
    } 
  } 
   
  //对联系人进行分组和排序 
  UILocalizedIndexedCollation *theCollation = [UILocalizedIndexedCollation currentCollation]; 
  NSInteger highSection = [[theCollation sectionTitles] count]; //中文环境下返回的应该是27,是a-z和#,其他语言则不同 
   
  //_indexArray 是右侧索引的数组,也是secitonHeader的标题 
  _indexArray = [[NSMutableArray alloc] initWithArray:[theCollation sectionTitles]]; 
   
  NSMutableArray *newSectionsArray = [[NSMutableArray alloc] initWithCapacity:highSection]; 
  //初始化27个空数组加入newSectionsArray 
  for (NSInteger index = 0; index < highSection; index++) { 
    NSMutableArray *array = [[NSMutableArray alloc] init]; 
    [newSectionsArray addObject:array]; 
    [array release]; 
  } 
   
  for (NSString *p in persons) { 
    //获取name属性的值所在的位置,比如"林丹",首字母是L,在A~Z中排第11(第一位是0),sectionNumber就为11 
    NSInteger sectionNumber = [theCollation sectionForObject:p collationStringSelector:@selector(getFirstLetter)]; 
    //把name为“林丹”的p加入newSectionsArray中的第11个数组中去 
    NSMutableArray *sectionNames = newSectionsArray[sectionNumber]; 
    [sectionNames addObject:p]; 
  } 
   
  for (int i = 0; i < newSectionsArray.count; i++) { 
    NSMutableArray *sectionNames = newSectionsArray[i]; 
    if (sectionNames.count == 0) { 
      [newSectionsArray removeObjectAtIndex:i]; 
      [_indexArray removeObjectAtIndex:i]; 
      i--; 
    } 
  } 
   
  //_contacts 是联系人数组(确切的说是二维数组) 
  self.contacts = newSectionsArray; 
  [newSectionsArray release]; 
   
  [self.tableView reloadData]; 
} 

顺便把索引和tableView dataSource的代理方法也贴一下:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 
{ 
  return self.contacts.count; 
} 
 
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 
  return [self.contacts[section] count]; 
} 
 
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
  static NSString *identifier = @"contactCell"; 
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier]; 
  if (cell == nil) { 
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier]; 
  } 
   
  cell.imageView.image = [UIImage imageNamed:@"default_head"]; 
  cell.textLabel.text = [self.contacts objectAtIndex:indexPath.section][indexPath.row]; 
  return cell; 
} 
 
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section 
{ 
  return [_indexArray objectAtIndex:section]; 
} 
 
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView 
{ 
  return _indexArray; 
} 
 
//索引列点击事件 
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index 
{ 
  return index; 
} 

还有两个很重要的方法:

下面这个方法是[theCollation sectionForObject:p collationStringSelector:@selector(getFirstLetter)]; 是这里的p对象要实现的方法,我这里的p是NSString,你也可以用其他对象例如Person。

 NSString *ret = @""; 
  if (![self canBeConvertedToEncoding: NSASCIIStringEncoding]) {//如果是英语 
    if ([[self letters] length]>2) { 
      ret = [[self letters] substringToIndex:1]; 
    } 
  } 
  else { 
    ret = [NSString stringWithFormat:@"%c",[self characterAtIndex:0]]; 
  } 
  return ret; 
} 

下面这个方法是NSString得类别方法

- (NSString *)letters{ 
  NSMutableString *letterString = [NSMutableString string]; 
  int len = [self length]; 
  for (int i = 0;i < len;i++) 
  { 
    NSString *oneChar = [[self substringFromIndex:i] substringToIndex:1]; 
    if (![oneChar canBeConvertedToEncoding:NSASCIIStringEncoding]) { 
      NSArray *temA = makePinYin2([oneChar characterAtIndex:0]); 
      if ([temA count]>0) { 
        oneChar = [temA objectAtIndex:0]; 
      } 
    } 
    [letterString appendString:oneChar]; 
  } 
  return letterString; 
} 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

 类似资料:
  • 本文向大家介绍mysql 中如何取得汉字字段的各汉字首字母,包括了mysql 中如何取得汉字字段的各汉字首字母的使用技巧和注意事项,需要的朋友参考一下

  • 本文向大家介绍Android仿微信联系人按字母排序,包括了Android仿微信联系人按字母排序的使用技巧和注意事项,需要的朋友参考一下 App只要涉及到联系人的界面,几乎都是按照字母排序以及导航栏的方式。既然这个需求这么火,于是开始学习相关内容,此篇文章是我通过参考网上资料独立编写和总结的,希望多多少少对大家有所帮助,写的不好,还请各位朋友指教。 效果图如下: 实现这个效果,需要三个知识点 : 1

  • 本文向大家介绍C#获取汉字字符串拼音首字母的方法,包括了C#获取汉字字符串拼音首字母的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C#获取汉字字符串拼音首字母的方法。分享给大家供大家参考。具体如下: 这个C#类经常能够用到,将提取汉字的拼音首字母,方便用户查询 希望本文所述对大家的C#程序设计有所帮助。

  • 本文向大家介绍python获取一组汉字拼音首字母的方法,包括了python获取一组汉字拼音首字母的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了python获取一组汉字拼音首字母的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的Python程序设计有所帮助。

  • 本文向大家介绍Java获取汉字对应的拼音(全拼或首字母),包括了Java获取汉字对应的拼音(全拼或首字母)的使用技巧和注意事项,需要的朋友参考一下 Java 根据汉语字符串获得对应的拼音字符串或者拼音首字母字符串等操作,需要添加jar包: 引入pinyin4j-2.5.0.jar包 代码实现: 运行结果: (1)全拼: woshizhongguoren123abc (2)首字母: wszgr123

  • 本文向大家介绍PHP常用函数之获取汉字首字母功能示例,包括了PHP常用函数之获取汉字首字母功能示例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了PHP常用函数之获取汉字首字母功能。分享给大家供大家参考,具体如下: 运行结果: D PS:这里再为大家提供几款本站拼音与字母相关工具供大家参考: 在线中英文根据首字母排序工具: http://tools.jb51.net/aideddesign