UIWebView Expose Objective C to JavaScript(UIWebView 将 Objective C 暴露给 JavaScript)
问题描述
在使用 UIWebView
时,如果使用 iPhone SDK,我将如何在 JavaScript 中公开 Objective-C 方法?
How would I expose an Objective-C method within JavaScript when using the iPhone SDK when using the UIWebView
?
任何帮助将不胜感激!
推荐答案
最好的方法是通过自定义链接,然后使用 UIWebView 委托方法 -webView:shouldStartLoadWithRequest:navigationType:
捕获请求.当您看到包含您的链接的请求通过时,您就知道您的操作已被触发.
The best way to do this would be through a custom link, and then use the UIWebView delegate method -webView:shouldStartLoadWithRequest:navigationType:
to trap requests. When you see a request come through with your link in it, you know your action has been triggered.
这篇关于UIWebView 将 Objective C 暴露给 JavaScript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIWebView 将 Objective C 暴露给 JavaScript
- GPS状态的广播接收器? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- UITextView 内容插图 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- URL编码Swift iOS 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01