views:

23

answers:

1
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

A: 

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.

mvds
and what header do i need to improt for the address book as i am tgetting many refernce errors :/
grepping indicates `#import <AddressBook/AddressBook.h>` and/or `#import <AddressBookUI/AddressBookUI.h>`
mvds