我创建了一个填充了自定义 UITableViewCell 的表格视图(像这样)。每个单元格包含两个 UIButton。我将操作分配给按钮,如下所示:
[decreaseButton addTarget:self action:@selector(decrease) forControlEvents:UIControlEventTouchUpInside];
这是正确的方法吗?无论如何,它可以工作,但是在我的“减少”方法中,我需要知道在我的 18 个表格视图行中的哪一行中按下了按钮。indexPath.row 当然不能在 cellForRowAtIndexPath 方法之外工作。有人可以解释我该怎么做吗?
提前非常感谢!
亚辛