从iOS SDK获取iPhone联系人的问题

时间:2013-11-27 10:12:02

标签: ios iphone xcode ios6 xcode5

我正在我的应用程序中获取iPhone联系人列表。我为此制作了一个示例应用程序并打印了它的值,并且工作正常。

 ABAddressBookRef ab=ABAddressBookCreate();
    NSArray *arrTemp=(NSArray *)ABAddressBookCopyArrayOfAllPeople(ab);

    NSLog(@"Array===%@",arrTemp);

    NSMutableArray *arrContact=[[NSMutableArray alloc] init];

    for (int i=0;i<[arrTemp count];i++)
    {
        NSMutableDictionary *dicContact=[[NSMutableDictionary alloc] init];
        NSString *str=(NSString *) ABRecordCopyValue([arrTemp objectAtIndex:i], kABPersonFirstNameProperty);
        @try
        {
            [dicContact setObject:str forKey:@"name"];
        }
        @catch (NSException * e) {
            [dicContact release];
            continue;
        }
        [arrContact addObject:dicContact];
        [dicContact release];
    }

    NSLog(@"arrContact===%@",arrContact);

我还使用了另外一个代码来尝试其他方式,它也适用于我的样本。

CFErrorRef *error = NULL;
    ABAddressBookRef addressBook = ABAddressBookCreateWithOptions(NULL, error);
    CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBook);
    CFIndex numberOfPeople = ABAddressBookGetPersonCount(addressBook);

    for(int i = 0; i < numberOfPeople; i++) {

        ABRecordRef person = CFArrayGetValueAtIndex( allPeople, i );

        NSString *firstName = (NSString *)(ABRecordCopyValue(person, kABPersonFirstNameProperty));
        NSString *lastName = (NSString *)(ABRecordCopyValue(person, kABPersonLastNameProperty));
        NSLog(@"Name:%@ %@", firstName, lastName);

        ABMultiValueRef phoneNumbers = ABRecordCopyValue(person, kABPersonPhoneProperty);

        //NSLog(@"\n%@\n", [[UIDevice currentDevice] name]);

        for (CFIndex i = 0; i < ABMultiValueGetCount(phoneNumbers); i++)
        {
            NSString *phoneNumber = (NSString *) ABMultiValueCopyValueAtIndex(phoneNumbers, i);

            NSLog(@"phoneNumber======%@",phoneNumber);
        }
    }

它们在模拟器上运行良好但是当我在设备上运行这些代码时,奇怪的是有时他们没有提供联系方式,但大部分时间它们运行正常。我的编码有什么问题吗?

当我在我的主应用程序中使用此演示代码时,此代码永远不会响应。我的设备中是否有任何权限或任何设置我要为不同的应用程序做什么?

此外,当我使用 CFIndex numberOfPeople = ABAddressBookGetPersonCount(addressBook); 获取人数时,它给我的值为11,但我在模拟器上只使用了五个联系人,当我使用 {{ 1}} 然后我得到重复的值(以满足5个联系人的11个计数)。

有人可以告诉我这里有什么不对吗?

1 个答案:

答案 0 :(得分:3)

从iOS6开始,您需要用户权限才能从地址簿访问联系人。你也不是要求许可。可能是因为你没有得到联系。我在我的应用程序中使用过的代码(由其他人编写)

 + (BOOL)getAccessPermission
{
    __block BOOL accessGranted = NO;
    ABAddressBookRef addressBook = ABAddressBookCreateWithOptions(NULL, NULL);
    if (ABAddressBookRequestAccessWithCompletion != NULL) { // we're on iOS 6
        dispatch_semaphore_t sema = dispatch_semaphore_create(0);
        ABAddressBookRequestAccessWithCompletion(addressBook, ^(bool granted, CFErrorRef error) {
            accessGranted = granted;
            dispatch_semaphore_signal(sema);
        });
        dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER);
        dispatch_release(sema);
    }
    else
    { // we're on iOS 5 or older
        accessGranted = YES;
    }
    return accessGranted;
}