如何在单击的 UITableViewCell 上显示删除确认按钮

发布于 2024-12-27 23:46:39 字数 273 浏览 1 评论 0原文

我正在尝试制作一个显示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 技术交流群。

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

发布评论

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

评论(1

后eg是否自 2025-01-03 23:46:39

为此,您可能会使用 commitEditingStyleForRowAtIndexPath 函数,该函数在编辑期间选择或删除对象时调用。

- (BOOL)tableView:(UITableView *)tableView
 canEditRowAtIndexPath:(NSIndexPath *)indexPath
 {
return YES;
 }    

然后为了确认做这样的事情:

- (void)tableView:(UITableView *)tableView
 commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
 forRowAtIndexPath:(NSIndexPath *)indexPath

{
//make a UIAlert and display confirmation, if yes then run the following code, if no then break

// remove the object
 [myItems removeObjectAtIndex:indexPath.row];

// refresh the table view to display your new data
 [tableView reloadData];
 }

To do this you would probably use the commitEditingStyleForRowAtIndexPath function, which is called when an object is selected or deleted during editing.

- (BOOL)tableView:(UITableView *)tableView
 canEditRowAtIndexPath:(NSIndexPath *)indexPath
 {
return YES;
 }    

And then for the confirmation do something like this:

- (void)tableView:(UITableView *)tableView
 commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
 forRowAtIndexPath:(NSIndexPath *)indexPath

{
//make a UIAlert and display confirmation, if yes then run the following code, if no then break

// remove the object
 [myItems removeObjectAtIndex:indexPath.row];

// refresh the table view to display your new data
 [tableView reloadData];
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文