重新打开 NSWindow 后 WebView 空白
我正在使用 WebView 在单窗口应用程序中向用户显示一些传入内容。
应用程序委托中有一个窗口控制器,我用它在 -applicationDidFinishLaunching:
和 -applicationShouldHandleReopen:hasVisibleWindows:
通知上发送 -showWindow:
。
在我关闭窗口并单击停靠图标重新打开窗口之前,这种方法效果很好。
此时,Web 视图为空白,不再响应鼠标输入,例如滚轮。滚动视图仍然指示文档的外观大小。
据IB称,该窗口不会在关闭时释放。
我是否遗漏了一些关于保留这些内容的内容?
I am using a WebView to display some incoming content to users in a single-window application.
There is a single window controller in the app delegate that I use to send -showWindow:
on -applicationDidFinishLaunching:
and -applicationShouldHandleReopen:hasVisibleWindows:
notifications.
This works well until I close the window and click the dock icon to reopen the window.
At this point the web view is blank and no longer responds to mouse input, such as the scroll wheel. The scroll view still indicates the apparent size of the document.
The window is not released on close, according to IB.
Am I missing something with regards to keeping that content around?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档,WebView 是随窗口关闭的。但是,我们可以子类化 WebView 并重写 shouldCloseWithWindow 并返回 NO。
According to the documentation WebView is closed with window. However, we can subclass WebView and override shouldCloseWithWindow and return NO.