从UItableViewcell选择将文本传递到UItextfield

时间:2013-12-16 02:29:48

标签: ios uitableview uitextfield

我正在尝试将UITableViewCell选项中的文字传递给UITextField

我的didSelectRowAtIndex设置如下

#pragma mark -- select row
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];

    NSLog(@"%@", selectedCell.textLabel.text);// shows correct values

    currentSelected.text = selectedCell.textLabel.text; // currentSelected is defined below


    [tableView deselectRowAtIndexPath:indexPath animated:YES];

}

这是我的表格视图选择,您可以看到我正在尝试将文本传递给currentSelected UITextField但是没有发生任何事情..

这就是我设置当前所选

的方式
#pragma mark - TextField delegates
- (void)textFieldDidBeginEditing:(UITextField *)textField {

    currentSelected = textField;

}

2 个答案:

答案 0 :(得分:1)

#pragma mark - TextField delegates
- (void)textFieldDidBeginEditing:(UITextField *)textField {

    currentSelected = textField;

}

用以下方法替换并确保文本字段委托被删除

#pragma mark - TextField delegates
- (void)textFieldDidEndEditing:(UITextField *)textField {

    currentSelected.text = textField.text;

}

答案 1 :(得分:0)

将字符串保存到视图控制器的属性,而不是文本字段。

然后,一旦您在属性中有文本,您可以根据需要在文本字段中显示它。

我的猜测是在didSelectRowAtIndexPath中,currentSelected为nil。