答案 0 :(得分:0)
尝试此操作:将标记分配给IndexPath中行的单元格中的编辑按钮。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
cell.editButton.tag = indexpath.row;
}
根据索引路径在此处引用您的单元格。将其文本字段作为第一个响应者。
- (IBAction)editButtonClicked:(id)sender{
UIButton *button = (UIButton*)sender;
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:button.tag inSection:0];
CustomCell *cell = (CustomCell*)[tableView cellForRowAtIndexPath:indexPath];
[cell.yourTextField becomeFirstResponder];
}