Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
ABAddressBookRef _addressBookRef = ABAddressBookCreate ();
NSArray* allPeople = (NSArray *)ABAddressBookCopyArrayOfAllPeople(_addressBookRef);
NSMutableArray* _allItems = [[NSMutableArray alloc] initWithCapacity:[allPeople count]]; // capacity is only a rough guess, but better than nothing
for (id record in allPeople) {
    CFTypeRef phoneProperty = ABRecordCopyValue((ABRecordRef)record, kABPersonPhoneProperty);
    NSArray *phones = (NSArray *)ABMultiValueCopyArrayOfAllValues(phoneProperty);
    CFRelease(phoneProperty);
    for (NSString *phone in phones) {
        NSString* compositeName = (NSString *)ABRecordCopyCompositeName((ABRecordRef)record);
        NSString* field = [NSString stringWithFormat@"%@:%@",compositeName,phone];
        [compositeName release];
        [_allItems addObject:field];
    }
    [phoness release];
}
CFRelease(_addressBookRef);
[allPeople release];
allPeople = nil;

Thats my code now i need assistance with what to import && how would i set my UITextView as that

Thanks for any help

share|improve this question

1 Answer

up vote 1 down vote accepted

This code puts name and phone number in the _allItems array, which you can subsequently use to fill a textview with:

for ( NSString *txt in _allItems )
{
    mytextview.text = [mytextview.text stringByAppendingFormat:@"%@\n",txt];
}

assuming you have a UITextView hooked up named mytextview.

share|improve this answer
and what header do i need to improt for the address book as i am tgetting many refernce errors :/ – user393273 Jul 18 '10 at 10:11
grepping indicates #import <AddressBook/AddressBook.h> and/or #import <AddressBookUI/AddressBookUI.h> – mvds Jul 18 '10 at 10:15

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.