Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get all the phone numbers with diff labels like "iPhone", "home phone", "mobile number", "other numbers" , etc. for a contact stored in iPhone address book.

How do I get it?

Please help.

Thanks in advance.

I am trying: which is crashing

ABAddressBookRef ab=ABAddressBookCreate();

    CFArrayRef people = ABAddressBookCopyArrayOfAllPeople(ab);
    NSMutableArray *allNumbers = [[NSMutableArray alloc] initWithCapacity:CFArrayGetCount(people)];

    for (CFIndex i = 0; i < CFArrayGetCount(people); i++) {
        ABRecordRef person = CFArrayGetValueAtIndex(people, i);
        ABMultiValueRef numbers = ABRecordCopyValue(person, kABPersonPhoneProperty);

        for (CFIndex j=0; j < ABMultiValueGetCount(numbers); j++) {


            CFStringRef locLabel = ABMultiValueCopyLabelAtIndex(numbers, i);
            NSString *phoneLabel =(NSString*) ABAddressBookCopyLocalizedLabel(locLabel);

            CFStringRef phoneNumberRef = ABMultiValueCopyValueAtIndex(numbers, j);
            CFStringRef locLabel1 = ABMultiValueCopyLabelAtIndex(numbers, j);
            NSString *phoneLabel1 =(NSString*) ABAddressBookCopyLocalizedLabel(locLabel);

             NSLog(@" ####### phone no -> %@ , phone label -> %@  #######)", locLabel1, phoneLabel1);
            //CFRelease(phones);
            NSString *phoneNumber = (NSString *)phoneNumberRef;
            CFRelease(phoneNumberRef);
            CFRelease(locLabel);
            NSLog(@"phone no -> %@ , phone label -> %@)", phoneNumber, phoneLabel);
            [phoneNumber release];
        }
        CFRelease(numbers);
    }

    CFRelease(people);
share|improve this question
3  
What have you tried? – Caleb Apr 30 '12 at 23:54

3 Answers

Try:

ABMultiValueRef *phones = ABRecordCopyValue(ref, kABPersonPhoneProperty);

for(CFIndex j = 0; j < ABMultiValueGetCount(phones); j++)
{
   CFStringRef phoneNumberRef = ABMultiValueCopyValueAtIndex(phones, j);
   CFStringRef locLabel = ABMultiValueCopyLabelAtIndex(phones, j);
   NSString *phoneLabel =(NSString*) ABAddressBookCopyLocalizedLabel(locLabel);

   NSString *phoneNumber = (NSString *)phoneNumberRef;
   CFRelease(phoneNumberRef);
   CFRelease(locLabel);
   NSLog(@"  - %@ (%@)", phoneNumber, phoneLabel);

   [phoneNumber release];
}
share|improve this answer
up vote 1 down vote accepted

Solved it this way:

  ABAddressBookRef addressBook = ABAddressBookCreate();
CFArrayRef all = ABAddressBookCopyArrayOfAllPeople(addressBook);
CFIndex n = ABAddressBookGetPersonCount(addressBook);

for( int i = 0 ; i < n ; i++ )
{
    ABRecordRef ref = CFArrayGetValueAtIndex(all, i);
    NSString *firstName = (NSString *)ABRecordCopyValue(ref, kABPersonFirstNameProperty);
    NSLog(@"Name %@", firstName);

    ABMultiValueRef phones = ABRecordCopyValue(ref, kABPersonPhoneProperty);
    for(CFIndex j = 0; j < ABMultiValueGetCount(phones); j++)
    {

        CFStringRef locLabel1 = ABMultiValueCopyLabelAtIndex(phones, j);
        NSString *phoneLabel1 =(NSString*) ABAddressBookCopyLocalizedLabel(locLabel1);

          NSLog(@"  ### %@  --- %@ ### )", locLabel1, phoneLabel1);

    }
}    
share|improve this answer

Also to get phone number with particular record id, do this:

   ABAddressBookRef addressBook = ABAddressBookCreate();
    CFArrayRef all = ABAddressBookCopyArrayOfAllPeople(addressBook);

        ABRecordRef ref = CFArrayGetValueAtIndex(all, indexPath.row);
        NSString *firstName = (NSString *)ABRecordCopyValue(ref, kABPersonFirstNameProperty);
        NSLog(@"Name %@", firstName);

        NSInteger myID = ABRecordGetRecordID(ref);
        NSLog(@"Record id is > %d", myID);

        ABRecordRef person = ABAddressBookGetPersonWithRecordID(addressBook,myID);

        ABMultiValueRef phones = ABRecordCopyValue(person, kABPersonPhoneProperty);

        for(CFIndex j = 0; j < ABMultiValueGetCount(phones); j++)
        {

            NSString* num = (NSString*)ABMultiValueCopyValueAtIndex(phones, j);

            CFStringRef locLabel1 = ABMultiValueCopyLabelAtIndex(phones, j);

            NSString *phoneLabel1 =(NSString*) ABAddressBookCopyLocalizedLabel(locLabel1);

            NSLog(@"%@  --- %@ )", num, phoneLabel1);

        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.