gpt4 book ai didi

iphone - 滑动删除

转载 作者:行者123 更新时间:2023-12-03 18:53:16 25 4
gpt4 key购买 nike

我已经看过了,我似乎无法在堆栈溢出中找到任何与我有相同问题的地方。所以我使用以下代码:

  -(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete);
}

当我滑动删除按钮时,会出现,但按下时它不会执行任何操作,我忘记做什么?

最佳答案

您需要在 if 语句之后实际删除数据。目前,您的 if 语句根本不执行任何操作,因为它后面只有一个分号。

 -(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
//Code to delete data goes here.
//This could include removing an object from an array, deleting it from core data,
//and removing the selected row.
}
}

关于iphone - 滑动删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4608191/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com