OK, so I'm implementing a classic scenario :
- A
NSPopupButtonwith some items in it - When the selected value changes, my
itemsArrayis updated - The
itemsArrayis linked to anNSArrayController - Each item in the
itemsArrayis anNSMutableDictionary(with keys :title,content) - An
NSTableViewdisplays thetitles of thearrangedObjects(binding) - An
NSTextViewdisplays thecontentof 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