NSTableView - Disable Row Selection

后端 未结 8 1559
温柔的废话
温柔的废话 2021-01-01 15:25

I have a NSTableView and I want to disable row selection.

The columns of the table view are bound to a NSArrayController and the content of

8条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-01 15:50

    I think

    - (BOOL)selectionShouldChangeInTableView:(NSTableView *)aTableView
    {
      return NO;
    }
    

    is better than

    - (NSIndexSet *)tableView:(NSTableView *)tableView selectionIndexesForProposedSelection:(NSIndexSet *)proposedSelectionIndexes
    

提交回复
热议问题