WebKit 框架中的shouldStartLoadWithRequest 等效项?
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
哦,好吧,我忽略了文档。以防万一有人遇到同样的问题,这是
webView:didStartProvisionalLoadForFrame:
Oh well I overlooked the docs. Just in case anyone has the same problem, it's
webView:didStartProvisionalLoadForFrame:
webView:decidePolicyForNavigationAction:request:frame:decisionListener:
和其他相关的WebPolicyDelegate
方法执行相同的操作。如果您在此方法中执行
[listener use]
,则类似于 iOS 中的return YES
。反之亦然:不执行任何操作即可返回 NO。webView:decidePolicyForNavigationAction:request:frame:decisionListener:
and other relatedWebPolicyDelegate
methods do the same thing.If you do
[listener use]
in this method, it's likereturn YES
in iOS. And vice versa: do nothing to return NO.