我的 CocoaTouch 应用程序如何对用户按下 UIWebView 内的 HTML 输入按钮做出反应?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,在您的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.