OK, so I'm implementing a classic scenario :
- A
NSPopupButton
with some items in it - When the selected value changes, my
itemsArray
is updated - The
itemsArray
is linked to anNSArrayController
- Each item in the
itemsArray
is anNSMutableDictionary
(with keys :title
,content
) - An
NSTableView
displays thetitle
s of thearrangedObjects
(binding) - An
NSTextView
displays thecontent
of the selected item.
Now, what I want is to automatically save any changes to the itemsArray (or itemsArray's item title/content), but without using Core Data (which I suspect might have been the best way to go about it).
I imagine it's quite a basic question this one, but honestly I've never really like Cocoa's auto-magical way of doing things... so, I need your help...
How should I go about that?
No comments:
Post a Comment