处理TableViewCell中按钮的操作

时间:2015-08-12 19:24:20

标签: ios iphone swift uitableview

我有一个包含通知按钮的单元格的表格视图,按下时应该根据相应单元格的坐标值安排基于位置的通知。 如何将按钮与相应的单元格相关联,以便在CLCircularRegion函数中传递正确的纬度,经度值。 我已经阅读了一些关于使用indexPath.row的帖子。但我真的无法弄明白。 请在swift中提供示例代码。

1 个答案:

答案 0 :(得分:0)

如果您的tableView中只有一个部分并使用自定义UITableViewCell子类,则可以将单元格的按钮tag属性设置为{{1}在indexPath.row中添加操作,例如:

cellForRowAtIndexPath

此实施操作方法之后:

cell.button.tag = indexPath.row
cell.button.addTarget(self, action: Selector("cellButtonPressed:"), forControlEvents: .TouchUpInside)