3

在我的应用程序中,我必须检索用户联系人的某些属性。例如,我需要检索联系人的名字、姓氏、中间名、昵称、组织、职位、部门、生日、电子邮件等。我有一些方法可以检索这些属性,但只有几个工作,即使它们都非常相似。这是我的一种有效方法(名字)和一种无效方法(职位)的代码:

+(NSString *)fetchFirstnameForPersonID: (NSUInteger)identifier{

    NSString *firstName;
    ABRecordRef currentPerson = (__bridge ABRecordRef)[[PSAddressBook arrayOfContacts] objectAtIndex:identifier];

    //If the first name property exists
    if ((__bridge_transfer NSString *)ABRecordCopyValue(currentPerson, kABPersonFirstNameProperty) != NULL){
    
        firstName = (__bridge_transfer NSString *)ABRecordCopyValue(currentPerson, kABPersonFirstNameProperty);        
    }    
    //If the first name property does not exist
    else{
        firstName = @"NULL";
    }
    return firstName;    
}

+(NSString *)fetchJobTitleForPersonID: (NSUInteger)identifier{

    NSString *jobTitle;
    ABRecordRef currentPerson = (__bridge ABRecordRef)[[PSAddressBook arrayOfContacts] objectAtIndex:identifier];

    if ((__bridge_transfer NSString *)ABRecordCopyValue(currentPerson, kABPersonJobTitleProperty) != NULL){
    
        jobTitle = (__bridge_transfer NSString *)ABRecordCopyValue(currentPerson, kABPersonJobTitleProperty);        
    }    
    else{
    
        jobTitle = @"NULL";
    }
    return jobTitle;    
}

arrayOfContacts是这样定义的类方法:

+(NSArray *)arrayOfContacts{

    //Creates an ABAddressBookRef instance containing the data from the address book database
    ABAddressBookRef addressBook = ABAddressBookCreate();

    //Creates an NSArray from the CFArrayRef using toll-free bridging
    NSArray *arrayOfPeople = (__bridge_transfer NSArray *)ABAddressBookCopyArrayOfAllPeople(addressBook);

    CFRelease(addressBook);

    return arrayOfPeople;
}

这些方法在一个名为“PSPropertyFetcher”的模型类中定义。在我的根视图控制器中,我将一些 NSLog 语句放入 viewDidLoad 以查看属性获取器方法是否正常工作。这是我的测试代码:

NSLog(@"Property Fetchers Test\n");

for(NSUInteger i = 0; i <= ([PSAddressBook contactsCount]-1); i++){

    NSLog(@"First Name: %@", [PSPropertyFetcher fetchFirstnameForPersonID:i]);
    NSLog(@"Middle Name: %@", [PSPropertyFetcher fetchMiddlenameForPersonID:i]);
    NSLog(@"Last Name: %@", [PSPropertyFetcher fetchLastnameForPersonID:i]);
    NSLog(@"Organization: %@", [PSPropertyFetcher fetchOrganizationForPersonID:i]);
    NSLog(@"Department: %@", [PSPropertyFetcher fetchDepartmentForPersonID:i]);        
    NSLog(@"Job Title: %@\n\n", [PSPropertyFetcher fetchJobTitleForPersonID:i]);        
}

这仅部分起作用;这是输出:

2012-06-27 10:37:30.094 猜猜是谁![80103:f803] 属性提取器测试

2012-06-27 10:37:30.108 猜猜谁![80103:f803] 名字:乔德

2012-06-27 10:37:30.114 猜猜是谁![80103:f803] 中间名:鲍勃

2012-06-27 10:37:30.118 猜猜谁![80103:f803] 姓:萨特森

2012-06-27 10:37:30.122 猜猜谁![80103:f803] 组织:强生

2012-06-27 10:37:30.125 猜猜是谁![80103:f803] 部门:NULL

2012-06-27 10:37:30.128 猜猜谁![80103:f803] 职位:空


2012-06-27 10:37:30.136 猜猜谁![80103:f803] 名字:Shemailan

2012-06-27 10:37:30.166 猜猜谁![80103:f803] 中间名:Daitran

2012-06-27 10:37:30.179 猜猜谁![80103:f803] 姓:卡泰兰

2012-06-27 10:37:30.184 猜猜是谁![80103:f803] 组织:Shmairo and Co.

2012-06-27 10:37:30.188 猜猜谁![80103:f803] 部门:NULL

2012-06-27 10:37:30.193 猜猜谁![80103:f803] 职位名称:NULL


2012-06-27 10:37:30.202 猜猜是谁![80103:f803] 名字:Alex

2012-06-27 10:37:30.207 猜猜谁![80103:f803] 中间名:约翰

2012-06-27 10:37:30.213 猜猜是谁![80103:f803] 姓:玉米

2012-06-27 10:37:30.219 猜猜谁![80103:f803] 组织:苹果

2012-06-27 10:37:30.225 猜猜谁![80103:f803] 部门:NULL

2012-06-27 10:37:30.230 猜猜谁![80103:f803] 职位名称:NULL

在 iOS Simulator Contacts 应用程序中,我确保为每个联系人填写了每个字段,但由于某种原因,“部门”和“职位”字段没有正确打印。

基本上,我想知道我的“职位”和“部门”获取方法有什么问题。

提前致谢!

4

4 回答 4

6

虽然在如此小的地址簿样本上似乎不太可能,但这里确实存在内存泄漏,可能会导致事情崩溃。

假设您正在使用arrayOfContacts确定[self contactsCount],每次通过这些类方法中的每个循环,您都会泄漏 2 个地址簿项目。

在这个小示例中,当您启动contactsWithJobTitleProperty 时,您只会泄露48 个地址簿。但是,如果您从一个更大的示例中提取此信息,在该示例中您反复尝试在更大的 AddressBook 上确定这些值,您可能会有数百个悬空的 AddressBook 对象。

像下面的代码片段一样添加 CFRelease,看看它是否有帮助。

+(NSArray *)arrayOfContacts{

    //Creates an ABAddressBookRef instance containing the data from the address book database
    ABAddressBookRef addressBook = ABAddressBookCreate();

    //Creates an NSArray from the CFArrayRef using toll-free bridging
    NSArray *arrayOfPeople = (__bridge_transfer NSArray *)ABAddressBookCopyArrayOfAllPeople(addressBook);
    CFRelease(addressBook);

    return arrayOfPeople;
}

(fwiw,另一个会使您的程序崩溃的事情是您使用 NSUInteger 作为循环计数器类型,但是您测试的值可能是-1 ...并且由于 0 是 NSUInteger 的下限,如果您的地址书中没有联系人,这将失败。但这不是发生崩溃的原因。)

于 2012-06-26T21:58:46.940 回答
2

在我看来,您可能正在访问 NULL 值,您是否尝试过在执行桥接传输之前测试它是否为 NULL?

于 2012-06-26T08:28:31.870 回答
1

这可能无法解决您的问题,但如果我是您,我会进行一些调整:

+(NSUInteger)contactsWithJobTitleProperty{
    NSUInteger contactNumber = 0;
    // don't call arrayOfContacts in the loop -- 
    // when you do this you are creating a new address book 
    // each time the loop executes
    NSArray *contacts = [self arrayOfContacts];
    for(NSUInteger increment = 0; increment <= (contacts.count-1); increment++){
        ABRecordRef currentPerson = (__bridge ABRecordRef)[contacts objectAtIndex:increment];
        NSString *valueTest = (__bridge_transfer NSString *)ABRecordCopyValue(currentPerson, kABPersonJobTitleProperty);

        if(valueTest != NULL) {
            contactNumber++;
        }
    }
    return contactNumber;
}

此外,@john.k.doe 提到,请确保CFRelease(addressBook);在您的arrayOfContacts方法中使用。

于 2012-06-27T07:53:45.913 回答
0

刚遇到同样的问题。请在此处查看 Jokinryou Tsui 的答案

基本上,如果您有不同的联系人来源可用,并且它们并非都是本地的(默认设置),那么您最终可能会发现您正在拉动的联系人数量不匹配,并尝试访问ABRecordRef 位于不存在的索引处。ABRecordRef 将有一个值(因此单独的 NULL 检查不会这样做),但该值将是垃圾,并且在尝试复制其任何值时您将获得 BAD ACCESS。

希望这可以帮助。

于 2015-07-08T04:29:40.747 回答