在 UITABLEVIEW 的编辑模式下点击删除按钮时,仅删除一行中的文本(但不删除该行)
我已在 UItableView 的编辑模式下将删除按钮标题更改为“清除”。现在,点击此按钮只会清除此单元格中的文本。但清除后,删除按钮不会返回,“-”按钮也不会旋转到原始位置。请提出一些解决方法和解决方案。提前致谢
I have changed the delete button title to "Clear" in UItableView's editing mode. Now, tapping on this button just clears the text in this cell. But after clearing the delete button doesnot go back and the '-' button also doesnot rotates to original position. Please suggest some workaround and solution. Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否调用了
[tableView setEditing:NOanimated:YES];
?Did you call
[tableView setEditing:NO animated:YES];
?感谢所有花时间思考这个问题的人。我得到了解决方案。我调用了
[tableView reloadRowsAtIndexPaths:editedIndexPathsArray withRowAnimation:UITableViewRowAnimationBottom]
。工作起来就像一个魅力。此外,动画也带来了额外的好处。此外,我正在做[tableView reloadData],但不需要仅为2-3行重新加载整个tableView。谢谢Thanks to all who had taken time to think on this problem. I got the solution. I called
[tableView reloadRowsAtIndexPaths:editedIndexPathsArray withRowAnimation:UITableViewRowAnimationBottom]
. Worked like a charm. Also, animation came with it like a bonus. Moreover, I was doing [tableView reloadData], but there was no need to reload whole tableView just for a 2-3 rows. Thanks