关于objective c:以编程方式进入编辑模式TextField

Programmatically enter edit mode TextField

我的 uitableviewcell 中有一个可编辑的文本字段,并希望用户能够编辑该文本字段的内容。这在用户单击小文本字段时有效,但我想在单击 tableviewcell 时进入该编辑模式。

因此,在 tableview didselect 行委托中,我需要以编程方式进入该文本字段的编辑模式,但我找不到任何方法来执行此操作。这甚至可能吗?


1
[textField becomeFirstResponder];

以下是如何使用此方法的示例:

1
2
3
4
5
   - (void)tableView:(UITableView *)tblView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {
          UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
          [cell.textField becomeFirstResponder];
    }