0

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

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

4

1 回答 1

3
[textField becomeFirstResponder]; 

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

   - (void)tableView:(UITableView *)tblView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
    {
          UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
          [cell.textField becomeFirstResponder];
    }
于 2013-02-14T11:37:07.533 回答