Reputation: 6606
Is there a way to delete a row in a particular column, in NSTableView
? If I use the following code:
[self.newsList removeRowsAtIndexes:[NSIndexSet indexSetWithIndex:0] withAnimation:NSTableViewAnimationEffectNone];
All rows with index 0 are deleted (in all columns), that's not what I want. I just want to delete row 0 in column 2. Is that possible?
Upvotes: 0
Views: 129