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

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.