I have a class ("TextEditorViewController") inside an NSTextView object ("textView"). I linked it to an NSTextView in my .xib file. Here is my .h file:
And here is my .m file:
#import "TextEditorViewController.h" @implementation TextEditorViewController - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { NSLog(@"applicationDidFinishLaunching called");
But when I change the text in my NSTextView, it does not call controlTextDidChange :! Why?
Thanks for answers! =)
source share