0

我一直在进行大量搜索,并设法获取了包含使用此代码单击的按钮的单元格的索引路径:

- (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

4

2 回答 2

0

尝试这个:

 UITableViewCell* cell = [self cellForRowAtIndexPath:indexPath];

现在使用该单元格获取属性。

于 2013-07-29T21:48:51.577 回答
0

您可以通过调用 tableView 的cellForRowAtIndexPath:方法来访问单元格:

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
于 2013-07-29T21:49:56.897 回答