Problem: a NSTextField is not updating the value it is bound to
Info:
- Custom subclass of NSView.
- the AppDelegate has an IBOutlet of the custom view, and it is connected in the Xib to an NSObject that's an instance of the view.
- the view is created correctly and responds to user mouse down/drag/up events.
- the views mouseDragged method updates an ivar that is synthesized and bound to the NSTextField.
I have confirmed that the mouseDraged method is updating the ivar in question, yet it does not update the NSTextField. I did a test and created a button whose method would set the ivar to some value, and the NSTextField updates just fine. I made sure to check the "continuous" box in the NSTextField's attribute inspector as well.
I am assuming it has something to do with the thread that mouseDragged is in and it doesn't normally update bindings, or something to that effect. Any advice would be greatly appreciated.
GW