Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cocoa : Remove Item from NSArrayController

I have a NSArrayController bound to a NSTableView. With this I have the typical Add/Remove buttons.

While Adding an item is very straight forward (I call a method, create an object with default values and add it) I have problems deleting objects from the controller. I know I can do this the easy way when connecting the button with the remove action from the ArrayController. But this is not what I want. I need to remove the object manually because I have some additional code to process.

Anway, removing objects seems far more complcated then I expected. It already tried:

NSArray *items =  [doToItemsArrayController selectedObjects];
[doToItemsArrayController removeSelectedObjects:items]; 

or

NSIndexSet *iSet = [doToItemsArrayController selectionIndexes];
[doToItemsArrayController removeSelectionIndexes:iSet];

None of them seems to work. How do I remove the selected Object from an NSArrayController with Objective-C code?

like image 939
TalkingCode Avatar asked Feb 06 '26 02:02

TalkingCode


1 Answers

You can remove objects using any of these methods. They are independent from the selection.

– removeObjectAtArrangedObjectIndex:
– removeObjectsAtArrangedObjectIndexes:
– remove:
– removeObject:
– removeObjects:

If you want to remove the selected object from the content array, then you can get the selected object(s) using the below methods and then plug it into one of the methods mentioned above.

– selectionIndex
– selectionIndexes
like image 114
David Avatar answered Feb 09 '26 02:02

David