标签: swift tableview cell
我有一个带有自定义单元格的tableview,其中包含一个按钮,此按钮应该在被击中后删除该条目(并重新加载tableview)。
所以我正在寻找一种从botton获取单元格索引路径的方法吗?
答案 0 :(得分:2)
在cellForRowAtIndexPath:方法中,您可以为UIButton定义标记。
cellForRowAtIndexPath:
UIButton
像
cell.button.tag = indexPath.row
然后,当触发按钮操作时,您可以通过indexPath获取button.tag。
indexPath
button.tag