将 iphone 电话簿中的所有联系人加载到变量中

发布于 2024-10-15 07:45:26 字数 129 浏览 7 评论 0原文

我对xcode编程很幼稚。我需要将 iPhone 电话簿中的所有联系人加载到变量上。

您能给我推荐一些图书馆或类似的东西吗?任何示例代码都将非常值得赞赏。

期待回复。:)

提前致谢!.....:)

I am naive to the xcode programming. I need to load all the contacts from the iPhone PhoneBook on a variable.

Could you please suggest me some library or something like that. Any sample code would be highly appreciable.

Looking forward to a response.:)

Thanks in advance!!..... :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁〃客ぐ 2024-10-22 07:45:26

嘿,经过长时间的战斗,我发现以下代码可以工作

    self.dataSource = [[NSMutableArray alloc]init]; // dataSouce is delared in .h file

ABAddressBookRef addressBook = ABAddressBookCreate(); 
NSMutableArray *allPeople = (NSMutableArray *)ABAddressBookCopyArrayOfAllPeople(addressBook); 
int nPeople = ABAddressBookGetPersonCount(addressBook); 

for(int i=0; i < nPeople; i++ ){
    ABRecordRef person = [allPeople objectAtIndex:i];
    NSString *name = @"";
    if(ABRecordCopyValue(person, kABPersonFirstNameProperty) != NULL)
        name = [[NSString stringWithFormat:@"%@", ABRecordCopyValue(person, kABPersonFirstNameProperty)] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];

    [dataSource addObject: name];
}

Hey all after a long fight I found the following code working

    self.dataSource = [[NSMutableArray alloc]init]; // dataSouce is delared in .h file

ABAddressBookRef addressBook = ABAddressBookCreate(); 
NSMutableArray *allPeople = (NSMutableArray *)ABAddressBookCopyArrayOfAllPeople(addressBook); 
int nPeople = ABAddressBookGetPersonCount(addressBook); 

for(int i=0; i < nPeople; i++ ){
    ABRecordRef person = [allPeople objectAtIndex:i];
    NSString *name = @"";
    if(ABRecordCopyValue(person, kABPersonFirstNameProperty) != NULL)
        name = [[NSString stringWithFormat:@"%@", ABRecordCopyValue(person, kABPersonFirstNameProperty)] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];

    [dataSource addObject: name];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文