Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Please show the code you're currently using to store the state – Henri Verroken Jan 16 '12 at 21:22

1 Answer

up vote 0 down vote accepted

It sounds like you've failed to set an initial value for the user default.

For example, if you bind your NSPopupButton using the "Selected Value" binding to a default "popupSelection" then you must insure that NSUserDefaults always returns one of the NSPopupButton's entries for "popupSelection".

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:

NSString *defaultsPath = [[NSBundle mainBundle] pathForResource:@"Defaults" ofType:@"plist"];
NSDictionary *defaultsDict = [NSDictionary dictionaryWithContentsOfFile:defaultsPath]];

and register these as your defaults with NSUserDefaults:

[[NSUserDefaults standardUserDefaults] registerDefaults:defaultsDict];

Now your popup button will start with a correct value, and the binding will keep the value in NSUserDefaults correct when the user changes the selection.

share|improve this answer
Thank you this worked great, I couldn't find it anywhere. I guess getting an account and asking was really worth it. – drewsdunne Jan 17 '12 at 2:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.