重新打开 NSWindow 后 WebView 空白

发布于 2024-12-12 05:42:09 字数 362 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江心雾 2024-12-19 05:42:09

根据文档,WebView 是随窗口关闭的。但是,我们可以子类化 WebView 并重写 shouldCloseWithWindow 并返回 NO。

- (BOOL)shouldCloseWithWindow

According to the documentation WebView is closed with window. However, we can subclass WebView and override shouldCloseWithWindow and return NO.

- (BOOL)shouldCloseWithWindow
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文