我正在使用基于文档的体系结构在单个窗口中做一些疯狂的多个文档,我已经完成了 95%。
我有这个两层文档架构,其中父文档打开并配置窗口,提供“子”文档列表。当用户选择其中一个孩子时,该文档将使用相同的窗口控制器打开,并将 aNSTextView
放置在窗口中。更改窗口控制器的文档关联,以便“编辑的点”和窗口标题跟踪当前选定的文档。想想一个 Xcode 项目,以及当您在其中编辑不同文件时会发生什么。
为了将代码置于伪形式,当打开子文档时,在父文档中调用这样的方法。
-(void)openChildDocumentWithURL:(NSURL *)documentURL {
// Don't open the same document multiple times
NSDocument *childDocument = [documentMapTable objectForKey:documentURL];
if (childDocument == nil) {
childDocument = [[[MyDocument alloc] init] autorelease];
// Use the same window controller
// (not as bad as it looks, AppKit swaps the window's document association for us)
[childDocument addWindowController:myWindowController];
[childDocument readFromURL:documentURL ofType:@"Whatever" error:NULL];
// Cache the document
[documentMapTable setObject:childDocument forKey:documentURL];
}
// Make sure the window controller gets the document-association swapped if the doc came from our cache
[myWindowController setDocument:childDocument];
// Swap the text views in
NSTextView *currentTextView = myCurrentTextView;
NSTextView *newTextView = [childDocument textView];
[newTextView setFrame:[currentTextView frame]]; // Don't flicker
[splitView replaceSubview:currentTextView with:newTextView];
if (currentTextView != newTextView) {
[currentTextView release];
currentTextView = [newTextView retain];
}
}
这行得通,而且我知道窗口控制器在任何给定时间都具有正确的文档关联,因为更改点和标题跟随我正在编辑的任何文档。
但是,当我点击保存时,(CMD+S 或文件 -> 保存/另存为)它想要保存父文档,而不是当前文档(如[[NSDocumentController sharedDocumentController] currentDocument]
窗口标题和更改点所报告和指示的那样)。
通过阅读NSResponder
文档,似乎链条应该是这样的:
当前视图 -> 超级视图(重复) -> 窗口 -> WindowController -> 文档 -> DocumentController -> 应用程序。
我不确定基于文档的体系结构是如何设置响应者链的(即它是如何放置NSDocument
和NSDocumentController
进入链的),所以我想调试它,但我不确定在哪里看。如何在任何给定时间访问响应者链?