如何在UITableViewCell中保存UITextField中的文本?

时间:2011-07-14 21:24:46

标签: uitableview cocoa-touch textfield

我有一个分区表,每个部分有动态行数。在每个单元格中都有一个文本字段。我需要一些建议或正确的方向:在编辑NSMutableArray后,在文本字段中保存文本输入。 。

1 个答案:

答案 0 :(得分:1)

我假设您正在将表视图控制器设置为文本字段的委托。根据评论,您可以使用

标识文本字段所属的单元格
- (void)textFieldDidEndEditing:(UITextField *)textField {
    YourCustomCell * cell = (YourCustomCell *)textField.superview.superview;
    NSIndexPath * indexPath = [self.tableView indexPathForCell:cell];

    /* Use the index path to store the data in array or dictionary with the index path as key */
}