Re: Saving NSTextView data to CoreData without ending editing

2008-04-25 Thread Mike Manzano
Here's what I'm doing: - (void)endEditingSavingCurrentResponder { NSResponder *currentResponder = [self firstResponder]; if ([currentResponder isKindOfClass:[NSTextView class]]) { if( [(NSTextView *) currentResponder isFieldEditor] )

Re: Saving NSTextView data to CoreData without ending editing

2008-04-23 Thread Ferhat Ayaz
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

Saving NSTextView data to CoreData without ending editing

2008-04-22 Thread Mike Manzano
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