0
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;

这就是我的代码现在我需要关于导入什么的帮助&&我将如何设置我的 UITextView

谢谢你的帮助

4

1 回答 1

1

此代码将姓名和电话号码放入_allItems数组中,您随后可以使用它来填充文本视图:

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

假设你有一个UITextView名为mytextview.

于 2010-07-18T10:10:58.623 回答