我在窗口控制器中将以下代码作为单例特殊Web浏览器的一部分
+ (id)sharedPurchaseController {
static SomeController *sharedController = nil;
if (!sharedController) {
sharedController = [[SomeController alloc] initWithWindowNibName:@"anXIB"];
}
return sharedController;
}
- (void)awakeFromNib{
shouldReloadWeb = NO;
[progressIndicator startAnimation:nil];
NSString* urlText = [NSString stringWithString:@"http://www.google.com"];
[[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlText]]];
}
-(void)windowWillClose:(NSNotification *)notification{
shouldReloadWeb = YES;
}
- (void)windowDidBecomeKey:(NSNotification *)notification{
if (shouldReloadWeb){
WebFrame* aFrame = [webView mainFrame]; //<-- Returns nil second time
[[webView mainFrame] reload];
shouldReloadWeb = NO;
}
}
问题是当NSWindow(浏览器)关闭然后重新打开时,[webView mainFrame]
会再次返回nil。 NSWindow出现在屏幕上,但WebView没有响应。
如果我注释掉创建单例的代码,一切都按预期工作。
是否可以使用应用程序创建单例浏览器,同时将WebView保留在Nib中?
谢谢,-Ben
答案 0 :(得分:3)
默认情况下,关闭容器窗口时会关闭WebView
。当WebView
关闭时,它会卸载当前页面,停止加载任何当前请求,不再处理新请求,也不会发送委托消息。如果您希望WebView
保持不变,以便在重新打开窗口时可以重复使用,则应调用
[webView setShouldCloseWithWindow:NO];
在-awakeFromNib
方法中。