Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有等效的方法
tableView:indexPathForCell
在 Mac 上?
我正在尝试获取按下按钮的行。
尝试使用连接到您的按钮的此方法。代码需要在作为表视图委托的类中。
-(IBAction)buttonClick:(NSButton *)sender { NSInteger buttonRow = [self.tv rowForView:sender]; //tv is IBOutlet for the tableView NSLog(@"%ld",buttonRow); }