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.

This is my code:

    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];
            for ( NSString *txt in _allItems )
            {
                contacts.text = [contacts.text stringByAppendingFormat:@"%@\n",txt];
            }
        }
        [phones release];
    }


    CFRelease(_addressBookRef);
    [allPeople release];
    allPeople = nil;

}

i basically want to dump the entire addressbook into a UItextView called contacts.text and have just the name and number like this NAME:NUMBER seperated by the :. i am currently getting a error on the line

 NSString* field = [NSString stringWithFormat@"%@:%@",compositeName,phone];

any help would be awesome :D

Thanks Mason

share|improve this question
"An error"? what error? – tc. Jul 21 '10 at 19:33
/Users/hobbypunk/Desktop/Copy Whole Address Book/Classes/MainViewController.m:80:0 /Users/hobbypunk/Desktop/Copy Whole Address Book/Classes/MainViewController.m:80: error: expected ':' before ']' token – user393273 Jul 21 '10 at 19:36

1 Answer

up vote 0 down vote accepted
 NSString* field = [NSString stringWithFormat@"%@:%@",compositeName,phone];

should be

 NSString* field = [NSString stringWithFormat:@"%@:%@",compositeName,phone];
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.