这是我需要实现的单元格,当我点击单元格左侧的图标时,它会触发,就像用户滑动单元格一样。
我有一个UITableViewCell的子类,我也连接了图标(按钮)。它看起来像这样
- (IBAction)didPressMinusButton:(id)sender {
[self setEditing:YES animated:YES];
}
在我的tableView中我也有这个
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
//my code for deletion here
}
我想实现当用户点击我单元格左侧的图标时,我应该显示删除或删除。基本上像滑动,但在这种情况下,我只是通过点击触发它。
答案 0 :(得分:0)
你的意思是当用户点击左侧的减号图标时,删除功能应该可以工作而不是刷卡。对吗?
如果是,那么只需删除此代码或为此
发表评论- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
//my code for deletion here
}