Tagged Questions
2
votes
1answer
144 views
What's the cleanest way to bind enumerated properties?
I have a menu which has an item for each value in an enum.
The menu:
[ ] Sort by Due Date
[ ] Sort by Priority
[√] Sort by Title
The enum:
typedef enum CW_TASK_SORT_METHOD {
...
1
vote
1answer
308 views
State of NSMenuItem bound to boolean in NSUserDefaults not staying in sync
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 ...
0
votes
1answer
497 views
Adding “Not Selected” Option To Bound NSPopupButton
I have an NSPopupButton that is bound to a core data backed NSArrayController. The selection of the NSPopupButton is also bound to a core data backed item. Bindings pretty much as follows:
NSArray ...
0
votes
1answer
213 views
Cocoa bindings — trying to bind the state of an NSMenuItem to my custom BOOL
In my mac app, [Model m] is a custom object with a synthesized BOOL property and ivar rollAnimations. And animationsItem is an NSMenuItem object. I want to bind the state of my animationsItem to the ...