I hope to disable the double click of the NSTableView row and prevent row editing.
Is it possible to disable the NSTableView double loop?
Welcome any comment
Try enabling this method and return NO:
- (BOOL)tableView:(NSTableView *)aTableView shouldEditTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex { return NO; }
Also check out the documentation for NSTableView .
NSTableView
.