我需要访问表视图的选定行的标题。 但是当我需要在TableViewDelegate 之外访问时出现问题,即:cellForRowAtIndexPath,didSelectRowAtIndexPath等。 有没有人可以帮助我。 提前谢谢。
答案 0 :(得分:1)
这个怎么样?
- (IBAction)ButtonAction:(id)sender {
CGPoint buttonPosition = [sender convertPoint:CGPointZero toView:tableView];
NSIndexPath *selectedindex = [tableView indexPathForRowAtPoint:buttonPosition];
UITableViewCell *Cell = [tableView cellForRowAtIndexPath:selectedIndexPath];
}