gpt4 book ai didi

ios - UITableViewCellEditingStyleInsert 添加按钮不起作用

转载 作者:行者123 更新时间:2023-11-29 03:38:46 26 4
gpt4 key购买 nike

我想在按下样式为 UITableViewCellEditingStyleInsert 的 UITableView 单元格的添加按钮后调用一个方法。我一直在使用 tableView:didSelectRowAtIndexPath: 但我刚刚意识到此方法仅在按下单元格“body”而不是按钮时有效。

我尝试过使用 tableView:accessoryButtonTappedForRowWithIndexPath: 但此方法似乎仅适用于 UITableViewCell 配件。

任何帮助将不胜感激。谢谢。

最佳答案

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleInsert)
{
NSLog(@"UITableViewCellEditingStyleInsert");
//Perform relevant task here
}
}

关于ios - UITableViewCellEditingStyleInsert 添加按钮不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18775911/

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