当表格进入“编辑”状态时,如何使表格单元格 UITextField 可编辑?模式?

发布于 2024-08-28 00:15:23 字数 53 浏览 3 评论 0原文

我有一个可编辑的简单表格视图。我需要用户能够做的就是在选择编辑表格时编辑单元格中的文本字段。

I have a simple table view which is editable. All I need the user to be able to do is edit the text field in the cell when they choose to edit the table.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫负雪 2024-09-04 00:15:23

您需要子类化 UITableViewCell 以使其可内联编辑。默认实现仅包含不可编辑的 UILabels。例如,如果您的单元格中有一个 UITextField 视图,则可以覆盖 - (void)setEditing:(BOOL)editinganimated:(BOOL)animated 并使文本字段成为第一响应者。

You need to subclass UITableViewCell to make it editable inline. The default implementation just contains UILabels, which are not editable. For example, if you had a UITextField view in your cell, you'd override - (void)setEditing:(BOOL)editing animated:(BOOL)animated and make the text field become the first responder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文