I have been searching everywhere for this and not been able to find it and its really bugging me. I can't figure out how to save the current state of an NSPopUpButton, so if a user changes it, the app will load that state next time they run the app. I have tried NSUserDefaults and its just been adding a new item to the pop up button that has a really weird name.
|
|
It sounds like you've failed to set an initial value for the user default. For example, if you bind your You achieve this by including a plist in your project, say "Defaults.plist", which contains the default value you wish for "popupSelection" (and the default values you wish for your other preferences), then at application startup load this plist from your bundle:
and register these as your defaults with
Now your popup button will start with a correct value, and the binding will keep the value in |
|||
|