1

我遇到了一个非常奇怪的问题,我试图在 iOS 6 中查找联系人的地址,除非该联系人的地址标有“地址”,否则我找不到它。在“工作”或“家庭”下输入的任何地址都不会出现。

为了解决这个问题,是否可以从联系人中获取人员记录并转储存储的每个值?我希望这能帮助我找到那些“家庭”和“工作”地址的居住地。

到目前为止,这是我的代码:

- (void)setAddressFromPerson:(ABRecordRef)person
{
    ABMultiValueRef addresses = ABRecordCopyValue(person, kABPersonAddressProperty);
    for (CFIndex j = 0; j<ABMultiValueGetCount(addresses);j++){
        CFDictionaryRef dict = ABMultiValueCopyValueAtIndex(addresses, j);
        CFStringRef typeTmp = ABMultiValueCopyLabelAtIndex(addresses, j);
        CFStringRef labeltype = ABAddressBookCopyLocalizedLabel(typeTmp);
        NSString *street = [(NSString *)CFDictionaryGetValue(dict, kABPersonAddressStreetKey) copy];
        NSString *city = [(NSString *)CFDictionaryGetValue(dict, kABPersonAddressCityKey) copy];
        NSString *state = [(NSString *)CFDictionaryGetValue(dict, kABPersonAddressStateKey) copy];
        NSString *zip = [(NSString *)CFDictionaryGetValue(dict, kABPersonAddressZIPKey) copy];
        NSString *country = [(NSString *)CFDictionaryGetValue(dict, kABPersonAddressCountryKey) copy];

        NSLog(street);
    }
4

1 回答 1

1

在视觉上解析有点困难,但转储与 an 相关的所有内容的最简单方法ABPersonRef是获取其 vCard 表示:

ABPersonRef person = ...;
CFDataRef data = ABPersonCreateVCardRepresentationWithPeople(@[person]);
NSString *vcard = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

(假设从NSArray *CFArrayRef等正确转换)

于 2012-12-01T00:54:44.197 回答