NSTextView delegate not working?

1.7k Views Asked by At

I have a NSTextView where i put the delegate to my file owner. My file owner is then assosiated with a class where i do different stuff in the view.

To my understanding it should now be possible to catch events from the NSTextView inside my class (because i have set its delegate to file owner), but it does not seem to work, why is that?

I have implemented this function in my class:

- (BOOL)control: (NSControl *)control textView:(NSTextView *)textView doCommandBySelector: (SEL)commandSelector {

    NSLog(@"i was fired!");

    return YES;
}
2

There are 2 best solutions below

1
On BEST ANSWER

according to http://developer.apple.com/library/mac/#documentation/cocoa/Reference/NSTextViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intf/NSTextViewDelegate

the method signature looks like:

- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)aSelector

give that a try instead.

0
On

The selector is just textView:doCommandBySelector:; drop the control.