如何在单击的 UITableViewCell 上显示删除确认按钮
我正在尝试制作一个显示deleteConfirmationButton(在编辑模式下)的UITableViewCell
,就像我单击编辑控件时发生的情况一样,但就我而言,当用户单击UITableCell 时我希望它出现。
我已经将属性 AllowsSelectionDuringEditing
设置为 YES,我可以删除行,我只是希望 deleteConfirmationButton 避免任何意外。
有关如何做的任何提示?
谢谢!!
I'm trying to make an UITableViewCell
that shows the deleteConfirmationButton (while in edit mode) just like happens when I click at the editing controls but in my case I want it when the user clicks over the UITableCell.
I've already set the property AllowsSelectionDuringEditing
to YES and I can delete the rows, I just want the deleteConfirmationButton to avoid any accident.
Any tips on how to do it?
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可能会使用 commitEditingStyleForRowAtIndexPath 函数,该函数在编辑期间选择或删除对象时调用。
然后为了确认做这样的事情:
To do this you would probably use the commitEditingStyleForRowAtIndexPath function, which is called when an object is selected or deleted during editing.
And then for the confirmation do something like this: