Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 uitableview 中编辑、删除和重新排序单元格。我擅长删除和重新排序,但如何编辑单元格?
单击编辑按钮时,我想更改 cell.textLabel.text。
请参阅 mihiros 给出的答案非常正确。
我也会建议这样做:
单击单元格上的编辑按钮时,您可以删除或隐藏文本并将其替换为 textField 那里。
在该字段中添加所需的文本,然后单击“确定”或完成从文本字段中获取文本并将其提供给cell.textLabel.text,然后取消隐藏标签(如果您在编辑时将其隐藏)。
补充:您还可以在单击写入 cell.textLabel.text 中的 Edit 按钮时将默认文本放在 Textfield 中。