As you understand, it NSTableViewdoes not save the selection automatically.
- NSTableView selectionIndexes Array Controller selectionIndexes / NSUserDefaults. selectionIndexes Shared User Defaults Controller ( values Model Key Path ). NSIndexSet / , NSKeyedUnarchiveFromData. .
, , ( , , ), .
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setValue:[NSKeyedArchiver archivedDataWithRootObject:self.arrayController.selectionIndexes] valueForKey:vvLastSavedSelectionIndex];
:
NSIndexSet *selectionIndexes = [NSKeyedUnarchiver unarchiveObjectWithData:[[NSUserDefaults standardUserDefaults] valueForKey:vvLastSavedSelectionIndex]];
[self.arrayController setSelectionIndexes:selectionIndexes];