Re: does not implement the NSTextViewDelegate protocol

2011-03-31 Thread Roland King
Did you declare the class as implementing the protocol? @interface myclass : superclass On Apr 1, 2011, at 7:09, JAMES ROGERS wrote: > Everything works but I am getting the following: > > Warning: Class "WinKeyer2AppDelegate" does not implement the > 'N

Re: does not implement the NSTextViewDelegate protocol

2011-03-31 Thread Howard Siegel
gate" does not implement the > 'NSTextViewDelegate' protocol." > > code snippet: > > - (void) awakeFromNib{ >[<*textView> setDelegate:self]; > } > > - (void) textDidChange:(NSNotification *)aNotification { > < process string in

does not implement the NSTextViewDelegate protocol

2011-03-31 Thread JAMES ROGERS
Everything works but I am getting the following: Warning: Class "WinKeyer2AppDelegate" does not implement the 'NSTextViewDelegate' protocol." code snippet: - (void) awakeFromNib{ [<*textView> setDelegate:self]; } - (void) textDidChange:(NSNotification *