WebKit 框架中的shouldStartLoadWithRequest 等效项?

发布于 2024-10-21 16:53:09 字数 223 浏览 2 评论 0原文

我正在尝试在 WebKit 框架(在 Mac 上)中寻找 webView:shouldStartLoadWithRequest:navigationType: 的等效实现。

我浏览了 WebUIDelegate & WebFrameLoadDelegate 但没有找到任何有用的东西。

非常感谢任何帮助=)。谢谢。

I'm trying to looking for an equivalent implement of webView:shouldStartLoadWithRequest:navigationType: in the WebKit framework (on Mac).

I looked through WebUIDelegate & WebFrameLoadDelegate but did not find anything useful.

Any help is very much appreciated =). Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

极度宠爱 2024-10-28 16:53:10

哦,好吧,我忽略了文档。以防万一有人遇到同样的问题,这是 webView:didStartProvisionalLoadForFrame:

Oh well I overlooked the docs. Just in case anyone has the same problem, it's webView:didStartProvisionalLoadForFrame:

茶花眉 2024-10-28 16:53:09

webView:decidePolicyForNavigationAction:request:frame:decisionListener: 和其他相关的 WebPolicyDelegate 方法执行相同的操作。

如果您在此方法中执行[listener use],则类似于 iOS 中的return YES。反之亦然:不执行任何操作即可返回 NO。

webView:decidePolicyForNavigationAction:request:frame:decisionListener: and other related WebPolicyDelegate methods do the same thing.

If you do [listener use] in this method, it's like return YES in iOS. And vice versa: do nothing to return NO.

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