从基于视图的tableview中的按钮获取所选行

时间:2012-04-16 21:02:52

标签: cocoa core-data tableview nsarraycontroller target-action

我有一个基于视图的tableview,其中一个按钮显示一个popover:

enter image description here

如何将所选内容设置为包含按下按钮的行。

我正在使用带有阵列控制器的核心数据。我打算在popover show相关对象中使用tableview。

1 个答案:

答案 0 :(得分:1)

只需将等于行的标记添加到每个单元格按钮button.tag = indexPath.row; 然后在按钮的selector中,您只需拨打

[self tableView:self.tableView didSelectRowAtIndexPath:[NSIndexPath indexPathForRow:button.tag inSection:0]];