开发者

Question regarding errand on UITableView creation from iPhone Addressbook

I have a question regarding the AddressBook Framework for iOS. The situation is as follows:

I'm trying recreate the contacts view from the phone application, but I want to show the contact's phone numbers in the same view. So if a contact has more than one number, his name will be in the TableView multiple times, each time with a different number.

I am trying to accomplish that by extracting all the information I need when the view loads and after that, populate the TableView with the appropriate values from an NSArray consisting of NSDictionaries containing the contact's information.

This works great except for one thing... The contact's phonenumbers and labels are read correctly and stored in the dictionary, but when I read them out later, they seem to have vanished.

Here's my code for generating the NSDictionaries, I bet it's some kind of memory management error or something completly stupid. I hope anyone can help me, thanks a lot in advance!

persons = [[NSMutableArray alloc] init];

ABAddressBookRef addressBook = ABAddressBookCreate();
ABRecordRef source = ABAddressBookCopyDefaultSource(addressBook);
NSArray *people = (NSArray *)ABAddressBookCopyArrayOfAllPeopleInSourceWithSortOrdering(addressBook, source, kABPersonSortByLastName);

for (id record in people)
{
    ABMultiValueRef numbers = ABRecordCopyValue((ABRecordRef)record, kABPersonPhoneProperty); 

    for (CFIndex i = 0; i < ABMultiValueGetCount(numbers); ++i) {
        CFStringRef label = ABAddressBookCopyLocalizedLabel(ABMultiValueCopyLabelAtIndex(numbers, i));
        CFStringRef number = ABMultiValueCopyValueAtIndex(numbers, i);
        CFStringRef firstNameRef = ABRecordCopyValue((ABRecordRef)record, kABPersonFirstNameProperty);
        CFStringRef lastNameRef = ABRecordCopyValue((ABRecordRef)record, kABPersonLastNameProperty);
        CFDataRef imageDataRef = ABPersonCopyImageDataWithFormat((ABRecordRef)record, kABPersonImageFormatThumbnail);

        NSString *firstName = [NSString stringWithFormat:@"%@", firstNameRef];
        NSString *lastName = [NSString stringWithFormat:@"%@", lastNameRef];
        NSString *pLabel = [[NSString alloc] initWithFormat:@"%@", label];
        NSString *pNumber = [NSString stringWithFormat:@"%@", number];
        UIImage *image = [UIImage imageWithData:(NSData*)imageDataRef];

        NSDictionary *personDict = [NSDictionary dictionaryWithObjectsAndKeys:firstName, @"firstName", lastName, @"lastName", image, @"image", pNumber, @"phoneNumber", pLabel, @"label", nil];
        NSLog(@"In %@ - %@", pLabel, pNumber);

        [persons addObject:personDict];

        CFRelease(firstNameRef);
        CFRelease(lastNameRef);
        //CFRelease(imageDataRef);
     开发者_运维百科   CFRelease(label);
        CFRelease(number);
    }
}

CFRelease(addressBook);
CFRelease(source);
[people release];


Finally could resolve this myself. Apparently I was adding some nil-images to the dictionaries which they couldn't handle.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜