1

AddressBook 框架提供了一个很好的方法来使用 vCard 初始化 ABPerson,通过使用该initWithVCardRepresentation:方法。

我想做的是用某个 vCard更新联系人。我不能使用initWithVCardRepresentation:,因为这会给我一个带有新 uniqueId 的新 ABPerson 对象,我想在这些更改之间保留 uniqueId。

做这样的事情有什么简单的方法?

谢谢!

4

1 回答 1

3

initWithVCardRepresentation仍然是将您的 vCard 转换为ABPerson.

只需使用它的结果在您的通讯簿中找到匹配的人,然后遍历 vCard 属性,将它们放入现有记录中。最后的保存将强化您的更改。

以下示例假定唯一的“键”为last-name, first-name。如果要包括未列出名称的公司或其他任何内容,则可以修改搜索元素,或者您可以通过获取 [AddressBook people] 来更改迭代方案,然后迭代人员并仅使用键值对的那些记录对匹配到您的满意。

- (void)initOrUpdateVCardData:(NSData*)newVCardData {
    ABPerson* newVCard = [[ABPerson alloc] initWithVCardRepresentation:newVCardData];
    ABSearchEleemnt* lastNameSearchElement
      = [ABPerson searchElementForProperty:kABLastNameProperty
                                     label:nil
                                       key:nil
                                     value:[newVCard valueForProperty:kABLastNameProperty]
                                comparison:kABEqualCaseInsensitive];
    ABSearchEleemnt* firstNameSearchElement
      = [ABPerson searchElementForProperty:kABFirstNameProperty
                                     label:nil
                                       key:nil
                                     value:[newVCard valueForProperty:kABFirstNameProperty]
                                comparison:kABEqualCaseInsensitive];
    NSArray* searchElements
      = [NSArray arrayWithObjects:lastNameSearchElement, firstNameSearchElement, nil];
    ABSearchElement* searchCriteria
      = [ABSearchElement searchElementForConjunction:kABSearchAnd children:searchElements];
    AddressBook* myAddressBook = [AddressBook sharedAddressBook];
    NSArray* matchingPersons = [myAddressBook recordsMatchingSearchElement:searchCriteria];
    if (matchingPersons.count == 0)
    {
        [myAddressBook addRecord:newVCard];
    }
    else if (matchingPersons.count > 1)
    {
        // decide how to handle error yourself here: return, or resolve conflict, or whatever
    }
    else
    {
        ABRecord* existingPerson = matchingPersons.lastObject;
        for (NSString* property in [ABPerson properties])   // i.e. *all* potential properties
        {
            // if the property doesn't exist in the address book, value will be nil
            id value = [newVCard valueForProperty:property];
            if (value)
            {
                NSError* error;
                if (![existingPerson setValue:value forProperty:property error:&error] || error)
                    // handle error
            }
        }
        // newVCard with it's new unique-id will now be thrown away
    }
    [myAddressBook save];
}
于 2012-07-16T18:28:14.017 回答