当表格进入“编辑”状态时,如何使表格单元格 UITextField 可编辑?模式?
我有一个可编辑的简单表格视图。我需要用户能够做的就是在选择编辑表格时编辑单元格中的文本字段。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要子类化 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.