I've been trying for a while to get the example at this website running. I've gotten up to the part where it tells me to "drag the AppController.h file to the nib document window in Interface Builder." I drag it, when my mouse is hovering over the Document window a green plus appears. Then I drop it, and nothing happens. The file is a header with a perfectly valid class that builds fine.
What am I doing wrong?!!
Contents of file:
What am I doing wrong?!!
Contents of file:
Code:
#import <Cocoa/Cocoa.h>
@interface AppController : NSObject {
IBOutlet id textView;
}
- (IBAction) clearText: sender;
@end