我一直在进行大量搜索,并设法获取了包含使用此代码单击的按钮的单元格的索引路径:
- (IBAction)buttonWasPressed:(id)sender
{
CGPoint buttonPosition = [sender convertPoint:CGPointZero toView:self.tableView];
NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:buttonPosition];
}
现在我的问题是如何访问自定义单元格的属性,就像我在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath