我可以通过以下调用使红色减号按钮出现在我的每个 UITableViewCells 上:
[self.tableview setEditing:YES];
和
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
return UITableViewCellEditingStyleDelete;
}
现在,红色减号按钮出现在 UITableViewCells 的左侧。但是,我无法通过简单的点击与它们进行交互(仅当我从红色减号向右滑动时)。
我希望在点击“红色减号”按钮时出现“删除”按钮,而不仅仅是在我滑动时出现。
为什么我的“红色减号”按钮听不到轻击手势?
编辑:这是我的 UITableViewCells 的截图: