我正在检索联系人姓名和电话号码。从我的应用程序中的地址簿中。我正在日志中打印它们,并且工作正常。但是,当我尝试在表视图上显示它们时,出现了NSInvalidArgumentException异常。我在视图控制器上有一个按钮,按此按钮时,表视图应填充有联系人姓名及其编号:

- (IBAction)syncContacts:(id)sender
{
    ABAddressBookRef addressBook = ABAddressBookCreate();
    CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBook);
    for (int i = 0; i < ABAddressBookGetPersonCount(addressBook); i++) {
        ABRecordRef ref = CFArrayGetValueAtIndex(allPeople, i);

        NSString *contact = (NSString *)CFBridgingRelease(ABRecordCopyCompositeName(ref));

       // NSString* phone = nil;

        ABMultiValueRef phoneNumbers = ABRecordCopyValue(ref,kABPersonPhoneProperty);

      //  if (ABMultiValueGetCount(phoneNumbers) > 0) {

        NSString *phone = (__bridge_transfer NSString*)
            ABMultiValueCopyValueAtIndex(phoneNumbers, 0);

      //  }
        NSDictionary *curContact=[NSDictionary dictionaryWithObjectsAndKeys:(NSString *)contact,@"Name",phone,@"phone",nil];

        [self.phoneContacts addObject:curContact];
    }

    tableView.delegate = self;
    tableView.dataSource = self;
    [tableView reloadData];


    NSLog(@"%@",self.phoneContacts);

    NSLog(@"%i",[self.phoneContacts count]);




}


表格视图的方法是:

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.phoneContacts count];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"Cell";

    UITableViewCell *cell = [tableView   dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

   // cell.textLabel.text = [self.phoneContacts objectAtIndex:indexPath.row];


    cell = [self.phoneContacts objectAtIndex:indexPath.row];
    return cell;


}


表格视图有什么问题?当phoneContacts仅具有名称时,它可以正常工作。([phoneContacts addObject:contact])。但是现在当我添加字典对象时,它会抛出此异常。

我做了一个改变。

 cell = [[self.phoneContacts objectAtIndex:indexPath.row] objectForKey:@"AddressBook"];


现在没有例外。但是屏幕上没有任何显示。

这是编辑后的方法:

- (IBAction)syncContacts:(id)sender
{
    ABAddressBookRef addressBook = ABAddressBookCreate();
    CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBook);
    for (int i = 0; i < ABAddressBookGetPersonCount(addressBook); i++) {
        ABRecordRef ref = CFArrayGetValueAtIndex(allPeople, i);
       // NSNumber *contact = (NSNumber *)ABRecordCopyComposite();// (ref));
        NSString *contact = (NSString *)CFBridgingRelease(ABRecordCopyCompositeName(ref));

       // NSString* phone = nil;

        ABMultiValueRef phoneNumbers = ABRecordCopyValue(ref,kABPersonPhoneProperty);

      //  if (ABMultiValueGetCount(phoneNumbers) > 0) {

        NSString *phone = (__bridge_transfer NSString*)
            ABMultiValueCopyValueAtIndex(phoneNumbers, 0);

      //  }
      //  NSDictionary *curContact=[NSDictionary dictionaryWithObjectsAndKeys:(NSString *)contact,@"Name",phone,@"phone",nil];

        contact = [contact stringByAppendingString:@"     "];
        contact = [contact stringByAppendingString:phone];
        [self.phoneContacts addObject:contact];
    }

    tableView.delegate = self;
    tableView.dataSource = self;
    [tableView reloadData];
}


表格视图保持原始帖子中给出的不变。现在正在工作。

最佳答案

cell.textLabel.text = [self.phoneContacts objectAtIndex:indexPath.row];注释行不起作用?您可以设置断点并检查单元格的textlabel是否分配了文本吗?

使用分配单元
cell = [[self.phoneContacts objectAtIndex:indexPath.row] objectForKey:@"AddressBook"]
除非您将phoneContacts定义为UITableViewCell的子类,否则它将无法工作。

10-08 03:28