从 Objective C 执行 Javascript 代码
我有一些 javascript 代码需要从 Objective-C (iPhone) 应用程序执行。
JavaScript 代码需要 iPhone 应用程序中的一些值。我的意思是,iPhone 应用程序中有一个位置(文本框
)供用户输入姓名。然后运行的 javascript 代码将是: alert(name)
其中 name
变量实际上是 textbox.text
我怎样才能从目标中做到这一点-c,不依赖外部网络服务器?
谢谢你!
I have some javascript code that I need to execute from an objective-c (iPhone) app.
The javascript code needs some of the values from the iPhone app. What I mean is, there is a spot in the iPhone app (a textbox
) for a user to type their name. Then the javascript code that runs will be: alert(name)
where the name
variable is really textbox.text
How can I do this from objective-c, without relying on an external webserver?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
UIWebView
并使用[webview loadHTMLString: html]
注入包含 JavaScript 的标记
Add a
UIWebView
and inject a<script>
tag containing the JavaScript using[webview loadHTMLString: html]