我已经实现了在tableView处于编辑模式时在tableView中插入新行的方法。 当我按下绿色"加"图标,新单元格添加到单元格上方,绿色"加"。新单元格包含一个空textField,它成为第一响应者并打开键盘。这是我的代码:
- (void)setEditing:(BOOL)editing animated:(BOOL)animated {
[super setEditing:editing animated:animated];
if (editing) {
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:[itemsArray count] inSection:0]] withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];
} else {
[self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:[itemsArray count] inSection:0]] withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];
}
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row >= [itemsArray count]) {
return UITableViewCellEditingStyleInsert;
} else {
return UITableViewCellEditingStyleDelete;
}
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
[self.tableView beginUpdates];
[itemsArray removeObjectAtIndex:indexPath.row];
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
[self.tableView beginUpdates];
[itemsArray addObject:@""];
[tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];
ClientCell * cell = (ClientCell*)[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:indexPath.row inSection:0]];
cell.cellText.enabled = YES;
cell.cellText.delegate = self;
[cell.cellText becomeFirstResponder];
}
}
问题:如何保存我在itemsArray中的cell.textField中输入的文本?细胞成为第一响应者,从那里我需要一些关于如何在数组中保存该文本的建议或指导。
答案 0 :(得分:1)
您已经在单元格中设置了UITextField的委托,所以只需实现:
- (void)textFieldDidEndEditing:(UITextField *)textField {
NSString *text = textField.text;
// Do whatever you want with the text, like putting it in the array
}
我不确定该单元格是否有按钮来保存文本或类似内容。当uitextfield失去焦点时,将触发上述方法。