我正在尝试从 applescript/objective-c OSX 应用程序中的 WebView 接收 shouldStartLoadWithRequest 消息。
我想收到消息的applescript:
on webView_shouldStartLoadWithRequest_(request, navigation_type)
log "should start!"
return yes
end webView_shouldStartLoadWithRequest_
我被引导相信我在 IntefaceBuilder 中有错误的委托连接,但我已经尝试了所有看起来合理但仍然没有运气的方法。
downloadDelegate --> MyApp App Delegate
frameLoadDelegate --> MyApp App Delegate
resourceLoadDelegate --> MyApp App Delegate
UIDelegate --> MyApp App Delegate
到目前为止没有运气。但是,我有其他消息正常工作(例如webView_didStartProvisionalLoadForFrame_
工作正常)。
我需要连接或添加什么才能接收此事件?我对这种类型的编程很陌生,所以如果我遗漏了一些明显的东西,我深表歉意。
非常感谢!