vote up 0 vote down star
1

Let's say I have a key @"MyPreference", with a corresponding value stored through NSUserDefaults.

Is there a way to be Notified when the value is modified?

Or could it be done through bindings? (But this case, instead of binding the value to a UI element, I wish my object to be notified of the change, so that I can perform other tasks.)

I am aware that NSUserDefaultsDidChangeNotification can be Observed, but this appears to be a all-or-nothing approach, and there does not appear to be a mechanism there to get at the specific key-value-pair that was modified. (Feel free to correct.)

flag

60% accept rate

2 Answers

vote up -2 vote down

Why are you appending a string literal to a string literal instead of just writing the whole thing as one?

link|flag
This should have been a comment and not an answer. – Niels Hansen Oct 1 at 16:48
Niels Hansen: He only has 9 karma (19 before the downvote). You need 50 karma to post comments. – Peter Hosey Oct 1 at 20:30
Preston Sumner: Most likely to make it easy for the user of that code to replace the literal @"MyPreference" with a variable. – Peter Hosey Oct 1 at 20:31
Niels Hansen: As a new user, I didn't have the karma to post a comment. The always helpful and independent-minded Stack Overflow users went ahead and voted me down to make it even harder to get to that point. – Preston Oct 7 at 0:01
vote up 4 vote down check

Spent all day looking for the answer, only to find it 10 minutes after asking the question...

Came across a solution through Key-Value-Observing:

[[NSUserDefaultsController sharedUserDefaultsController] addObserver:self
    forKeyPath:[@"values." stringByAppendingString: @"MyPreference"]
    options:NSKeyValueObservingOptionNew
    context:NULL];
link|flag

Your Answer

Get an OpenID
or

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