代码之家  ›  专栏  ›  技术社区  ›  Winston Chen

kABPersonAddressProperty导致ABAddressBookGetPersonWithRecordID下的崩溃

  •  0
  • Winston Chen  · 技术社区  · 14 年前

    + (NSMutableArray*) getAllContactProfiles{
    
        NSMutableArray *listOfProfile = [[NSMutableArray alloc] init];
    
        //---get the contact information for the api
        ABAddressBookRef addressBook = ABAddressBookCreate(); 
        CFArrayRef people = ABAddressBookCopyArrayOfAllPeople(addressBook);
        CFIndex numberOfPeopleInAddressBook = ABAddressBookGetPersonCount(addressBook);
    
        //<- Here I loop through all the contacts and pass the ABRecordRef into the following function
    
        //---release the variables---
        CFRelease(addressBook);
        CFRelease(people);
        [listOfProfile autorelease];
    
        return listOfProfile;
    }
    

    以下函数

    + (MSProfileEntry*) getPersonProfileThroughABRecordRef:(ABRecordRef) person{
    
        MSProfileEntry *mockProfile;
        ABRecordID recID=ABRecordGetRecordID(person);
        //get the user name
        CFStringRef firstName;
        firstName = ABRecordCopyValue(person, kABPersonFirstNameProperty);//it goes wrong here!
        CFStringRef lastName;
        lastName = ABRecordCopyValue(person, kABPersonLastNameProperty);
        //bla bla bla.. the rest of the code
    }
    

    一切都很顺利。但是,当我尝试通过ABAddressBookGetPersonWithRecordID获取ABRecordRef时,就像在下一个方法中一样:

    下一种方法

    + (MSProfileEntry*) getPersonProfileThroughContactId:(NSInteger*)contactId{
        ABAddressBookRef addressBook = ABAddressBookCreate();
        ABRecordRef person = 
        ABAddressBookGetPersonWithRecordID(addressBook, (ABRecordID)contactId);
        CFRelease(addressBook);
        if (person == nil) {
            return nil;
        }
        return [MSContactUtil getPersonProfileThroughABRecordRef:person];
    }
    

    整个应用程序在线崩溃: ABRecordCopyValue(person, kABPersonFirstNameProperty);

    现在的问题是 ABRecordCopyValue(person,kabbersonfirstnameproperty); ABAddressBookCopyArrayOfAllPeople ABAddressBookGetPersonWithRecordID

    有人知道怎么解决这个问题吗?我真的不想只是为了寻找一个联系人而在整个联系人基础上循环。

    2 回复  |  直到 14 年前
        1
  •  3
  •   Winston Chen    14 年前

    原来是内存问题。我忘了留着那个“ addressBook

    firstName = ABRecordCopyValue(person, kABPersonFirstNameProperty);
    

    通讯录 “已经打扫干净了。不知何故我们还需要” person ".

    所以,记住放在下面这行,你就安全了。

    CFRetain(addressBook)

        2
  •  1
  •   Michael Kessler    14 年前

    • 你通过了吗 (NSInteger*)contactId getPersonProfileThroughContactId ABAddressBookGetPersonWithRecordID(addressBook, (ABRecordID)contactId);
    • 你检查一下 if (person == nil) 但是 人可能不是零-你应该和 NULL . 我相信是的 无效的

    这两件事一起导致了车祸。

    只需按原样传递一个整数-而不是它的地址。。。

    :

    + (MSProfileEntry*)getPersonProfileThroughContactId:(NSInteger)contactId