从 Objective C 执行 Javascript 代码

发布于 2024-12-12 04:59:59 字数 308 浏览 0 评论 0原文

我有一些 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 技术交流群。

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

发布评论

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

评论(1

萌能量女王 2024-12-19 04:59:59

添加 UIWebView 并使用 [webview loadHTMLString: html] 注入包含 JavaScript 的

Add a UIWebView and inject a <script> tag containing the JavaScript using [webview loadHTMLString: html]

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