我需要访问TableViewDelegate之外的表视图的选定行的标题

时间:2016-03-08 15:37:24

标签: ios objective-c uitableview

我需要访问表视图的选定行的标题。 但是当我需要在TableViewDelegate 之外访问时出现问题,即:cellForRowAtIndexPath,didSelectRowAtIndexPath等。 有没有人可以帮助我。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

这个怎么样?

- (IBAction)ButtonAction:(id)sender {
    CGPoint buttonPosition = [sender convertPoint:CGPointZero toView:tableView];
    NSIndexPath *selectedindex = [tableView indexPathForRowAtPoint:buttonPosition];
   UITableViewCell *Cell  = [tableView cellForRowAtIndexPath:selectedIndexPath];
}