我有一个包含通知按钮的单元格的表格视图,按下时应该根据相应单元格的坐标值安排基于位置的通知。
如何将按钮与相应的单元格相关联,以便在CLCircularRegion
函数中传递正确的纬度,经度值。
我已经阅读了一些关于使用indexPath.row
的帖子。但我真的无法弄明白。
请在swift中提供示例代码。
答案 0 :(得分:0)
如果您的tableView
中只有一个部分并使用自定义UITableViewCell
子类,则可以将单元格的按钮tag
属性设置为{{1}在indexPath.row
中添加操作,例如:
cellForRowAtIndexPath
此实施操作方法之后:
cell.button.tag = indexPath.row
cell.button.addTarget(self, action: Selector("cellButtonPressed:"), forControlEvents: .TouchUpInside)