I have an NSMenuItem titled "Word Wrap" in my main menu (MainMenu.xib). Its value is bound to my shared user defaults controller, also instantiated in the XIB. It also sends the following action when selected:
- (IBAction)toggleWordWrap:(id)sender {
NSUserDefaultsController *ctrlr = [NSUserDefaultsController sharedUserDefaultsController];
if ([[[ctrlr values] valueForKey:@"wordWrapIsEnabled"] boolValue]) {
// turn on word wrap
} else {
// turn off word wrap
}
}
In my app delegate's +initialize method, I populate the standard user defaults with default values:
+ (void)initializeDefaults {
NSDictionary *defaults = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithBool:NO], @"wordWrapIsEnabled",
// etc.
nil];
NSUserDefaultsController *ctrlr = [NSUserDefaultsController sharedUserDefaultsController];
[ctrlr setInitialValues:defaults];
}
My problem is that my NSMenuItem's state is not staying in sync with my user defaults. Here is a timeline of what happens:
App launch:
- Word Wrap menu item not checked
wordWrapIsEnabledis NO- Word wrap is OFF
1st time Word Wrap is selected:
- Word Wrap menu item checked
wordWrapIsEnabledis NO (BZZZT WRONG)- Word wrap is OFF (BZZZT WRONG)
2nd time Word Wrap is selected:
- Word Wrap menu item not checked
wordWrapIsEnabledis YES (BZZZT WRONG)- Word Wrap is ON (BZZZT WRONG)
Repeat flip-flop ad infinitum.
I've checked to make sure there is nothing else in my project that accesses wordWrapIsEnabled. Could there be a race condition between the invocation of the selector and the setting of wordWrapIsEnabled via the binding? I've been assuming that the bound value gets set first.