Here's what I'm doing:
- (void)endEditingSavingCurrentResponder
{
NSResponder *currentResponder = [self firstResponder];
if ([currentResponder isKindOfClass:[NSTextView class]])
{
if( [(NSTextView *) currentResponder isFieldEditor] )
Hi Mike,
try to check "continuously Update Value" in the bind options.
Ferhat
On Apr 22, 2008, at 9:26 PM, Mike Manzano wrote:
I have an application that periodically needs to save content
contained in an NSTextView. The text view is bound to a Core Data
managed object. Currently, I am end
I have an application that periodically needs to save content
contained in an NSTextView. The text view is bound to a Core Data
managed object. Currently, I am ending editing on the text view to
force it to save its contents into the store. However, since I'm doing
it automatically on a tim