我有一个自定义单元格并在单元格中添加一些按钮。
SettingTableViewCell * cell = (SettingTableViewCell *)[[sender superview] superview];
NSIndexPath * path = [self.tableView indexPathForCell:cell];
如何理解第二句话!
非常感谢!
答案 0 :(得分:1)
不知道你想做什么。但我对这两行给出了解释。
[sender superview]
这意味着,您可以点击按钮,这就是为什么,您将此sender
置于单元格的内容视图中。然后再次调用superview]
,这样你就可以获得单元格中的superview of content view
。请参见下面的视图层次结构。
----cell
-------ContentView
-------------Sender
NSIndexPath * path = [self.tableView indexPathForCell:cell];
。该行将为相应的单元格提供indexPath,该单元格保存在tableview单元格堆栈中。