我真的没有做太多,我已经被困住了。
到目前为止,我已经完成了:
添加 NSWindowController子类 ( MikesWindowController.h & .m)
从MikesDocument.m中删除了windowNibName(因为我正在实现我自己的 WindowController 子类。)
我试过了:
测试 NSLog 是否会在init、windowControllerDidLoadNib、applicationDidFinishLaunching处返回。仅打印初始化时的 NSLog。
并且,在编译我的 Document 应用程序后测试了Main Menu -> File -> New 。
我是否正确执行此操作?谢谢。任何建议都会很棒!在MikesDocument.m下
-(void)makeWindowControllers{
MikesController *controller = [[MikesWindowController alloc]init];
[self addWindowController:controller];
}