我有一个 NSTableView ,我想获取单元格中存在的值。我只有一列,所以我只需要行号
我可以使用这个[tableView selectedRow]-但是我把它放在哪里我想把它放在一个在选择任何行时被调用的方法中。
-(void)tableViewSelectionDidChange:(NSNotification *)notification{
NSLog(@"%d",[tableViewController selectedRow]);
}
上述方法也不起作用我收到错误 -[NSScrollView selectedRow]: unrecognized selector sent to instance 0x100438ef0]
我想要类似 iPhone tableview 中可用的方法-
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
}