我的 CocoaTouch 应用程序如何对用户按下 UIWebView 内的 HTML 输入按钮做出反应?

发布于 2024-11-06 09:43:50 字数 221 浏览 0 评论 0原文

我在 Cocoa Touch 应用程序中有一个 UIWebView。

我想要一个 ,如果用户按下此按钮,然后我想在应用程序内部做出反应。

是否有委托/回调/javascript 解决方案来执行此操作?

最好的问候

ch.h

I’ve got an UIWebView inside an Cocoa Touch application.

I would like to have an <input type='submit'> or <input type='button'>, and if the user presses this button, then I would like to react inside the application.

Is there a delegate/callback/javascript solution to do this?

Best regards

ch.h

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

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

发布评论

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

评论(1

朱染 2024-11-13 09:43:50

首先,在您的Web 视图中,您需要触发使用自定义URL 方案(例如appAction://)的URL 的加载。

然后在 UIWebView 的委托中实现 webView:shouldStartLoadWithRequest:navigationType: ,并在该方法中捕获该 URL 方案的加载。使用您认为合适的 URL 的其余部分来确定要采取的操作。

您可以在此 stackoverflow 问题<中找到有关如何执行此操作的更多详细信息< /a>.

First, in your web view, you need to trigger the loading of a URL that uses a custom URL scheme (e.g. appAction://).

Then implement webView:shouldStartLoadWithRequest:navigationType: in your UIWebView's delegate, and in that method, catch the loading of that URL scheme. Use the rest of the URL as you see fit to determine what action to take.

You can find much more detail on how to do this in this stackoverflow question.

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