0

我有一个包含多个部分的 UITableView。tableview 的一部分有 2 行,其中一个是可编辑的(插入按钮),另一个显示地址簿中的名称。单击单元格中的插入按钮,我正在加载 peoplePickerView 并选择一个联系人。

我从通讯录中获取联系人为

- (BOOL)peoplePickerNavigationController: (ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person {

    NSString *firstName = (__bridge NSString *)ABRecordCopyValue(person, kABPersonFirstNameProperty);

    NSString *middleName = (__bridge NSString *)ABRecordCopyValue(person, kABPersonMiddleNameProperty);

    NSString *lastName = (__bridge NSString *)ABRecordCopyValue(person, kABPersonLastNameProperty);

    self.contactName = [NSString stringWithFormat:@"%@/%@/%@", firstName ?: @"", middleName ?: @"", lastName ?: @""];

    [self.myTableView reloadData];
    [self dismissViewControllerAnimated:YES completion:nil];
    return NO;
}

在 tableview 的 cellForRowAtIndexPath

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{ 
    if(indexPath.section == 0){
        if(indexPath.row == 0){
        cell.textLabel.text = self.contactName;
        NSLog(@"Contact Name %@", self.contactName);
    }
    else{
        cell.textLabel.text = @"";
    }
}
}

当我设置为字符串时,只有 firstname 属性,然后字符串具有正确的值,但是当我尝试连接字符串(first +middle+last names)并重新加载 tableview 时,我得到一个空值。我做错了什么,我该如何纠正?

4

3 回答 3

1

尝试替换以下行..

self.contactName = [NSString stringWithFormat:@"%@/%@/%@", firstName ?: @"", middleName ?: @"", lastName ?: @""];

像这样检查..

self.contactName = [[NSString alloc] initWithFormat:@"%@/%@/%@", firstName ?: @"", middleName ?: @"", lastName ?: @""];
于 2013-03-18T05:59:14.483 回答
1

我做错的是将属性contactName 声明为weak

@property(nonatomic, weak) NSString *contactName;

还要按照 Ahmad 的建议在连接字符串之前检查 null。

于 2013-03-18T16:34:31.663 回答
0

你必须确保两件事

  1. 在调用 viewDidLoad 之前,您正在初始化 self.contactName,[NSString stringWithFormat...请执行以下操作self.contactName = [NSString alloc] init]

2.如果您尝试将一个 nil 字符串连接到一个字符串,最终结果也是 nil,请确保连接代码中包含的所有字符串都有值而不是 nil

于 2013-03-18T06:10:03.953 回答