0

有没有等效的方法

tableView:indexPathForCell 

在 Mac 上?

我正在尝试获取按下按钮的行。

4

1 回答 1

2

尝试使用连接到您的按钮的此方法。代码需要在作为表视图委托的类中。

-(IBAction)buttonClick:(NSButton *)sender {
    NSInteger buttonRow = [self.tv rowForView:sender]; //tv is IBOutlet for the tableView
    NSLog(@"%ld",buttonRow);
}
于 2012-08-14T05:19:48.553 回答