は
あなたがテーブルビューのためのデリゲートとしてサブビューを作成したオブジェクトを設定し、そのオブジェクトでtableViewSelectionDidChange
を実装することができますいくつかの方法があります。
またはあなたのtableView渡し、NSTableViewSelectionDidChangeNotification
通知を購読することができます。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tableViewSelectionDidChange:) name:NSTableViewSelectionDidChangeNotification object:tableView];
をし、それを扱う:
- (void)tableViewSelectionDidChange:(NSNotification *)aNotification {
NSTableView *tableView = (NSTableView *)aNotification.object;
NSLog(@"selection changed: %i", [tableView selectedRow]);
}
が私には論理的に聞こえる...本当にありがとうございました!私はこれを試してみる...もし私が何か問題を見つけたら、私は投稿します:) –